diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-05-12 15:52:08 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-05-12 15:52:08 -0300 |
commit | 57804e82978727001fc62e5b1106d69531a9cd97 (patch) | |
tree | 770756414046565af864487a0020f2ef7be8df0a /templates/devel/index.html | |
parent | 37075e5f3423a69fec03faf31ce2133c55374dfc (diff) | |
parent | f6464da0e14047e9db803f4b40c18ba644e75f24 (diff) |
Merge branch 'master' of git://projects.archlinux.org/archweb
Conflicts:
templates/packages/packages_list.html
templates/public/index.html
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r-- | templates/devel/index.html | 31 |
1 files changed, 11 insertions, 20 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index 260e0cb9..11f73f3a 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -8,7 +8,7 @@ <h3>My Flagged Packages</h3> - <table id="dash-myflagged" class="results dash-stats"> + <table id="dash-myflagged" class="results"> <thead> <tr> <th>Name</th> @@ -38,7 +38,7 @@ <h3>My Incomplete Todo List Packages</h3> - <table id="dash-mytodolist" class="results dash-stats"> + <table id="dash-mytodolist" class="results"> <thead> <tr> <th>Todo List</th> @@ -67,7 +67,7 @@ <h3>Package Todo Lists</h3> - <table id="dash-todo" class="results dash-stats"> + <table id="dash-todo" class="results"> <thead> <tr> <th>Name</th> @@ -81,7 +81,7 @@ <td><a href="{{ todo.get_absolute_url }}" title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td> <td>{{ todo.date_added|date }}</td> - <td class="wrap">{{ todo.description|safe }}</td> + <td class="wrap">{{ todo.description|urlize }}</td> </tr> {% empty %} <tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr> @@ -91,11 +91,9 @@ </div><!-- #dev-dashboard --> -<div id="dash-by-arch" class="dash-stats box"> +<div id="dash-by-arch" class="box"> - <h3 class="dash-stats" style="cursor: pointer" - title="Click to toggle stats by architecture"> - Stats by Architecture <span class="dash-click">(click to toggle)</span></h3> + <h2>Stats by Architecture</h2> <table id="stats-by-arch" class="results dash-stats"> <thead> @@ -122,11 +120,9 @@ </div><!-- #dash-by-arch --> -<div id="dash-by-repo" class="dash-stats box"> +<div id="dash-by-repo" class="box"> - <h3 class="dashboard dash-stats" style="cursor: pointer" - title="Click to toggle stats by repository"> - Stats by Repository <span class="dash-click">(click to toggle)</span></h3> + <h2>Stats by Repository</h2> <table id="stats-by-repo" class="results dash-stats"> <thead> @@ -153,11 +149,9 @@ </div><!-- dash-by-arch --> -<div id="dash-by-maintainer" class="dash-stats box"> +<div id="dash-by-maintainer" class="box"> - <h3 class="dashboard dash-stats" style="cursor: pointer" - title="Click to toggle stats by maintainer"> - Stats by Maintainer <span class="dash-click">(click to toggle)</span></h3> + <h2>Stats by Maintainer</h2> <table id="stats-by-maintainer" class="results dash-stats"> <thead> @@ -203,12 +197,9 @@ $(document).ready(function() { {widgets: ['zebra'], sortList: [[0,0], [1,0]]}); $("#dash-todo:not(:has(tbody tr.empty))").tablesorter( {widgets: ['zebra'], sortList: [[1,1]]}); - $("#stats-by-arch").add("#stats-by-repo").add("#stats-by-maintainer").tablesorter( + $(".dash-stats").tablesorter( {widgets: ['zebra'], sortList: [[0,0]], headers: { 1: { sorter: 'pkgcount' }, 2: { sorter: 'pkgcount' } } }); - $("h3.dash-stats").click( - function(e) { $(this).next().toggle(); } - ); }); </script> {% endblock %} |