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 @@
- Maintainer |
+ Maintainer |
Assigned recipes |
Up-to-date |
Not updated |
@@ -101,6 +101,24 @@
{% endfor %}
+
{% 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 @@
-
+
- Upstream status |
Recipe |
Version |
- Upstream version |
- Maintainer |
- Summary |
+ Upstream version |
+ Upstream status |
+ Maintainer |
+ Summary |
-
+
{% for r in recipe_list %}
+ {{ r.name }} |
+ {{ r.version }} |
+ {{ r.upstream_version }} |
{% if r.upstream_status == "Up-to-date" %}
{% 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 }} |
{% endfor %}
+
{% 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 },
}
});