{% extends "_layouts/cp" %} {% set title = "Tag Groups"|t('app') %} {% block actionButton %} {{ "New tag group"|t('app') }} {% endblock %} {% set crumbs = [ { label: "Settings"|t('app'), url: url('settings') } ] %} {% block content %} {% if tagGroups|length %} {% for tagGroup in tagGroups %} {% endfor %}
{{ "Name"|t('app') }} {{ "Handle"|t('app') }}
{{ tagGroup.name|t('site') }} {{ tagGroup.handle }}
{% endif %} {% endblock %} {% js %} new Craft.AdminTable({ tableSelector: '#taggroups', noItemsSelector: '#notaggroups', deleteAction: 'tags/delete-tag-group', confirmDeleteMessage: '{{ "Are you sure you want to delete “{name}” and all its tags?"|t('app') }}', }); {% endjs %}