Add not modified status to job details and list
This commit is contained in:
parent
204b1f301a
commit
a9e32e755a
|
@ -25,7 +25,7 @@ Example:
|
|||
{% endif %}
|
||||
{{ _('errors') }}
|
||||
</span>
|
||||
{% for action in ['added', 'updated', 'deleted'] %}
|
||||
{% for action in ['added', 'updated', 'deleted', 'not modified'] %}
|
||||
<span class="label" data-diff="{{ action }}">
|
||||
{% if action in stats and stats[action] > 0 %}
|
||||
{{ stats[action] }}
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
</span>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% for action in ['added', 'updated', 'deleted'] %}
|
||||
{% for action in ['added', 'updated', 'deleted', 'not modified'] %}
|
||||
<li>
|
||||
<span class="label" data-diff="{{ action }}" title="{{ _(action) }}">
|
||||
{% if action in job.stats and job.stats[action] > 0 %}
|
||||
|
@ -66,4 +66,3 @@
|
|||
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
|
Loading…
Reference in New Issue