aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-02-18 16:36:15 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:51 +1200
commit84120c0fa615aed55d578379bcd10398f56a26f1 (patch)
tree3a0a22bef8bc9e41cbcc3dd2f2b97f072c5726f3 /templates
parent9b27c36f015e281e7cdc803788bc7773c9d00172 (diff)
downloadopenembedded-core-contrib-84120c0fa615aed55d578379bcd10398f56a26f1.tar.gz
rrs: Set of UI improvments
Give some space to the tabs, Add some top margin to the nav-pills class so we create some breathing space between the milestone overview and the tabs. Change 'No Maintainer' to 'No maintainer' Just to keep the capitalisation style consistent across the interface. Apply the muted class to all not-sortable table headings The class was missing from the Recipe and Maintainer columns in the recipes table; and from the Not updated and % done column in the maintainers table. Remove the strong tag from the recipe status information This is just to match the presentation of the milestone overview information in the base_toplevel.html template. Separate the footer from the bottom of the viewport, It's hard to see the footer on click on its links when they are so close to the bottom of the veiwport, so add some margin at the bottom of the footer <div>. Change the label of the recipes tab, From 'Recipes status' to 'Recipes upstream status' to match the label of the 'Upstream status' filter in the recipes table. Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/rrs/base_toplevel.html2
-rw-r--r--templates/rrs/maintainers.html4
-rw-r--r--templates/rrs/recipedetail.html12
3 files changed, 9 insertions, 9 deletions
diff --git a/templates/rrs/base_toplevel.html b/templates/rrs/base_toplevel.html
index ceee76064f..3339000b9d 100644
--- a/templates/rrs/base_toplevel.html
+++ b/templates/rrs/base_toplevel.html
@@ -87,7 +87,7 @@
<li>
<a href="{% url 'recipes' release_name milestone_name %}{{ extra_url_param }}">
{% endif %}
- Recipes status</a>
+ Recipes upstream status</a>
</li>
{% if this_url_name == 'maintainers' %}
diff --git a/templates/rrs/maintainers.html b/templates/rrs/maintainers.html
index cd0fe7a010..e52f3c726b 100644
--- a/templates/rrs/maintainers.html
+++ b/templates/rrs/maintainers.html
@@ -40,10 +40,10 @@
<th class="sorted">Maintainer</th>
<th class="muted">Assigned recipes</th>
<th class="muted">Up-to-date</th>
- <th>Not updated</th>
+ <th class="muted">Not updated</th>
<th class="muted">Can't be updated</th>
<th class="muted">Unknown</th>
- <th>% done</th>
+ <th class="muted">% done</th>
{% for i in intervals %}
{% if current_interval == forloop.counter0 %}
diff --git a/templates/rrs/recipedetail.html b/templates/rrs/recipedetail.html
index 3e2c55b88d..1506fec127 100644
--- a/templates/rrs/recipedetail.html
+++ b/templates/rrs/recipedetail.html
@@ -31,20 +31,20 @@
<div class="navbar-inner">
<ul class="nav">
{% if upstream_status == "Up-to-date" %}
- <li class="lead">Upstream status: <strong class="text-success">{{ upstream_status }}</strong></li>
+ <li class="lead">Upstream status: <span class="text-success">{{ upstream_status }}</span></li>
{% elif upstream_status == "Not updated" %}
- <li class="lead">Upstream status: <strong class="text-error">{{ upstream_status }}</strong></li>
+ <li class="lead">Upstream status: <span class="text-error">{{ upstream_status }}</span></li>
{% elif upstream_status == "Can't be updated" %}
- <li class="lead">Upstream status: <strong class="muted">{{ upstream_status }}</strong></li>
+ <li class="lead">Upstream status: <span class="muted">{{ upstream_status }}</span></li>
{% else %}
- <li class="lead">Upstream status: <strong class="text-warning">{{ upstream_status }}</strong></li>
+ <li class="lead">Upstream status: <span class="text-warning">{{ upstream_status }}</span></li>
{% endif %}
{% if upstream_status == "Not updated" or upstream_status == "Can't be updated" %}
<li class="divider-vertical"></li>
- <li class="lead">Upstream version: <strong>{{ upstream_version }}</strong></li>
+ <li class="lead">Upstream version: <span>{{ upstream_version }}</span></li>
{% endif %}
<li class="divider-vertical"></li>
- <li class="lead">Maintainer: <strong><a href="{% url recipes release_name milestone_name %}?maintainer_name={{ maintainer_name|urlencode }}">{{ maintainer_name }}</a></strong></li>
+ <li class="lead">Maintainer: <span><a href="{% url recipes release_name milestone_name %}?maintainer_name={{ maintainer_name|urlencode }}">{{ maintainer_name }}</a></span></li>
<li class="divider-vertical"></li>
</ul>
</div>