mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00
recipes.html: Add Last Updated column
Added a column in the recipes view that show the last time a recipe was updated when is not up-to-date Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
This commit is contained in:
parent
fcdbb060ae
commit
e8a13de121
|
@ -76,6 +76,7 @@
|
||||||
<th class="version_column muted">Version</th>
|
<th class="version_column muted">Version</th>
|
||||||
<th class="upstream_version_column muted">Upstream version</th>
|
<th class="upstream_version_column muted">Upstream version</th>
|
||||||
<th class="upstream_status_column span2">Upstream status</th>
|
<th class="upstream_status_column span2">Upstream status</th>
|
||||||
|
<th class="last_updated_column">Last Updated</th>
|
||||||
<th class="maintainer_column">Maintainer</th>
|
<th class="maintainer_column">Maintainer</th>
|
||||||
<th class="summary_column muted span5">Summary</th>
|
<th class="summary_column muted span5">Summary</th>
|
||||||
<th class="no_update_reason_column muted span5" style="display:none">No update reason</th>
|
<th class="no_update_reason_column muted span5" style="display:none">No update reason</th>
|
||||||
|
@ -88,16 +89,24 @@
|
||||||
<td class="version_column">{{ r.version }}</td>
|
<td class="version_column">{{ r.version }}</td>
|
||||||
<td class="upstream_version_column">{{ r.upstream_version }}</td>
|
<td class="upstream_version_column">{{ r.upstream_version }}</td>
|
||||||
{% if r.upstream_status == "Up-to-date" %}
|
{% if r.upstream_status == "Up-to-date" %}
|
||||||
<td class="text-success" data-toggle="tooltip" title="{{r.outdated}}">
|
<td class="text-success">
|
||||||
{% elif r.upstream_status == "Not updated" %}
|
{% elif r.upstream_status == "Not updated" %}
|
||||||
<td class="text-error" data-toggle="tooltip" title="{{r.outdated}}">
|
<td class="text-error">
|
||||||
{% elif r.upstream_status == "Can't be updated" %}
|
{% elif r.upstream_status == "Can't be updated" %}
|
||||||
<td class="muted" data-toggle="tooltip" title="{{r.outdated}}">
|
<td class="muted">
|
||||||
{% else %}
|
{% else %}
|
||||||
<td class="text-warning" data-toggle="tooltip" title="{{r.outdated}}">
|
<td class="text-warning">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ r.upstream_status }}
|
{{ r.upstream_status }}
|
||||||
</td>
|
</td>
|
||||||
|
{% if r.outdated == "Up-to-date" %}
|
||||||
|
<td class="text-success">
|
||||||
|
{% elif r.outdated == "Unknown" %}
|
||||||
|
<td class="text-warning">
|
||||||
|
{% else %}
|
||||||
|
<td class="text-error">
|
||||||
|
{% endif %}
|
||||||
|
{{r.outdated}}</td>
|
||||||
<td class="maintainer_column">{{ r.maintainer_name }}</td>
|
<td class="maintainer_column">{{ r.maintainer_name }}</td>
|
||||||
<td class="summary_column">{{ r.summary }}</td>
|
<td class="summary_column">{{ r.summary }}</td>
|
||||||
<td class="no_update_reason_column" style="display:none">{{ r.no_update_reason }}</td>
|
<td class="no_update_reason_column" style="display:none">{{ r.no_update_reason }}</td>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user