{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Tags — rosbackup-ng{% endblock %} {% block page_title %}Tags{% endblock %} {% block content %}

Rename a tag to update it across every device at once; delete to strip it from all of them. New tags are created on the device form.

{% if tags %}
{% for t in tags %}
{% set gs = tag_groups.get(t.name, []) %} {% if gs %}{% for g in gs[:2] %}{{ g }}{% endfor %}{% if gs|length > 2 %}+{{ gs|length - 2 }}{% endif %}{% endif %} {{ t.count }} {{ m.icon_delete('/ui/tags/' ~ (t.name|urlencode) ~ '/delete', 'Delete tag “' ~ t.name ~ '” from all devices?', 'Delete') }}
{% endfor %}
{% else %}

No tags yet — add tags to a device to see them here.

{% endif %}
{% endblock %}