{% extends 'base.html' %} {% block content %} {% from '_helpers.html' import render_simple_field, render_field %}
{{ _('Add a new organisational tag') }}
{{ render_simple_field(form.name, placeholder=_("Watch group / tag")) }}
{{ render_simple_field(form.save_button, title=_("Save") ) }}

{{ _('Groups allows you to manage filters and notifications for multiple watches under a single organisational tag.') }}
{% if not available_tags|length %} {% endif %} {% for uuid, tag in available_tags %} {% endfor %}
{{ _('# Watches') }} {{ _('Tag / Label name') }}
{{ _('No website organisational tags/groups configured') }}
Mute notifications {{ "{:,}".format(tag_count[uuid]) if uuid in tag_count else 0 }} {{ tag.title }} {{ _('Edit') }} {{ _('Recheck') }} {{ _('Delete') }} {{ _('Unlink') }} {{ _('RSS Feed for this watch') }}
{% endblock %}