|
|
|
@ -27,6 +27,7 @@
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th></th>
|
|
|
|
|
<th># Watches</th>
|
|
|
|
|
<th>Tag / Label name</th>
|
|
|
|
|
<th></th>
|
|
|
|
|
</tr>
|
|
|
|
@ -45,7 +46,8 @@
|
|
|
|
|
<td class="watch-controls">
|
|
|
|
|
<a class="link-mute state-{{'on' if tag.notification_muted else 'off'}}" href="{{url_for('tags.mute', uuid=tag.uuid)}}"><img src="{{url_for('static_content', group='images', filename='bell-off.svg')}}" alt="Mute notifications" title="Mute notifications" class="icon icon-mute" ></a>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="title-col inline">{{tag.title}}</td>
|
|
|
|
|
<td>{{ tag_count[uuid] if uuid in tag_count else 0 }}</td>
|
|
|
|
|
<td class="title-col inline"> <a href="{{url_for('index', tag=uuid) }}">{{ tag.title }}</a></td>
|
|
|
|
|
<td>
|
|
|
|
|
<a class="pure-button pure-button-primary" href="{{ url_for('tags.form_tag_edit', uuid=uuid) }}">Edit</a>
|
|
|
|
|
<a class="pure-button pure-button-primary" href="{{ url_for('tags.delete', uuid=uuid) }}" title="Deletes and removes tag">Delete</a>
|
|
|
|
|