{% include 'header.html' %}

Tag Management

{% if can_add_tag %} {% endif %}
{% if error %}
{{ error }}
{% endif %} {% if tags %}
{% for tag in tags %} {% endfor %}
Name Colour Description Devices Created Actions
{{ tag.name }}
{{ tag.color }} {{ tag.description or '-' }} {% if tag.device_count > 0 %} {{ tag.device_count }} {% else %} 0 {% endif %} {{ tag.created_at.strftime('%Y-%m-%d') if tag.created_at else '-' }}
{% if can_edit_tag %} {% endif %} {% if can_delete_tag %}
{% endif %}
{% else %}

No tags found. Add your first tag to get started.

{% endif %}