diff --git a/rrs/static/css/rrs-additional.css b/rrs/static/css/rrs-additional.css index faa112e..c199c1c 100644 --- a/rrs/static/css/rrs-additional.css +++ b/rrs/static/css/rrs-additional.css @@ -36,9 +36,8 @@ } /* Sorting styles */ - th > a, th.muted { - font-weight: normal; + font-weight: normal; } .sorted { @@ -87,10 +86,6 @@ th > a, th.muted { color: #c09853; } -th .caret { - vertical-align: middle; -} - /* status styles */ .well{ diff --git a/templates/rrs/maintainers.html b/templates/rrs/maintainers.html index f898fd6..cd0fe7a 100644 --- a/templates/rrs/maintainers.html +++ b/templates/rrs/maintainers.html @@ -37,7 +37,7 @@ - + @@ -101,6 +101,24 @@ {% endfor %}
MaintainerMaintainer Assigned recipes Up-to-date Not updated
+ {% endblock %} {% block scripts %} diff --git a/templates/rrs/recipes.html b/templates/rrs/recipes.html index a0260f3..6a8d1f8 100644 --- a/templates/rrs/recipes.html +++ b/templates/rrs/recipes.html @@ -66,20 +66,23 @@ - +
- - - - + + + + - + {% for r in recipe_list %} + + + {% if r.upstream_status == "Up-to-date" %} - - - {% endfor %}
Upstream status Recipe VersionUpstream versionMaintainerSummaryUpstream versionUpstream statusMaintainerSummary
{{ r.name }}{{ r.version }}{{ r.upstream_version }} {% elif r.upstream_status == "Not updated" %} @@ -91,15 +94,30 @@ {% endif %} {{ r.upstream_status }} {{ r.name }}{{ r.version }}{{ r.upstream_version }} {{ r.maintainer_name }} {{ r.summary }}
+ {% endblock %} {% block scripts %} @@ -246,12 +264,10 @@ $(document).ready(function() { {% if recipe_list_count > 0 %} $(recipesTable).tablesorter({ - sortList: [[0,0]], + sortList: [[0,0], [3,0], [4,0]], headers: { 1: { sorter: false }, 2: { sorter: false }, - 3: { sorter: false }, - 4: { sorter: false }, 5: { sorter: false }, } });