When all items showed, show which tag it belongs to

pull/1/head
Leigh Morresi 4 years ago
parent 17701c5c72
commit 0ee47a1274

@ -46,6 +46,9 @@ section.content {
.watch-table { .watch-table {
width: 100%; width: 100%;
} }
.watch-tag-list {
color: #e70069;
}
.box { .box {
max-width: 80%; max-width: 80%;

@ -48,6 +48,9 @@
{% if watch.last_error is defined and watch.last_error != False %} {% if watch.last_error is defined and watch.last_error != False %}
<div class="fetch-error">{{ watch.last_error }}</div> <div class="fetch-error">{{ watch.last_error }}</div>
{% endif %} {% endif %}
{% if not active_tag %}
<span class="watch-tag-list">{{ watch.tag}}</span>
{% endif %}
</td> </td>
<td>{{watch|format_last_checked_time}}</td> <td>{{watch|format_last_checked_time}}</td>
<td>{{watch.last_changed|format_timestamp_timeago}}</td> <td>{{watch.last_changed|format_timestamp_timeago}}</td>

Loading…
Cancel
Save