aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2015-06-26 14:35:31 -0500
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:52 +1200
commitfaafae13fa6bde4809bab65e6eb7ad049140b2ea (patch)
tree5fd69ea6e4821dd471284fba27b2bffed3d7326c /templates
parenta9aff3cae665a9b80f3b06f45865a2239d739ac3 (diff)
downloadopenembedded-core-contrib-faafae13fa6bde4809bab65e6eb7ad049140b2ea.tar.gz
views.py: Add how long a recipe hasn't been updated
This add a tooltip in the upstream status field that show how long the recipe hasn't been updated. Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/rrs/recipes.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/rrs/recipes.html b/templates/rrs/recipes.html
index 493b7cf904..ca3c93ebee 100644
--- a/templates/rrs/recipes.html
+++ b/templates/rrs/recipes.html
@@ -88,13 +88,13 @@
<td class="version_column">{{ r.version }}</td>
<td class="upstream_version_column">{{ r.upstream_version }}</td>
{% if r.upstream_status == "Up-to-date" %}
- <td class="text-success">
+ <td class="text-success" data-toggle="tooltip" title="{{r.outdated}}">
{% elif r.upstream_status == "Not updated" %}
- <td class="text-error">
+ <td class="text-error" data-toggle="tooltip" title="{{r.outdated}}">
{% elif r.upstream_status == "Can't be updated" %}
- <td class="muted">
+ <td class="muted" data-toggle="tooltip" title="{{r.outdated}}">
{% else %}
- <td class="text-warning">
+ <td class="text-warning" data-toggle="tooltip" title="{{r.outdated}}">
{% endif %}
{{ r.upstream_status }}
</td>