{% extends "_layouts/cp" %} {% set title = "Tag Groups"|t %} {% set crumbs = [ { label: "Settings"|t, url: url('settings') } ] %} {% set docsUrl = 'http://buildwithcraft.com/docs/tags' %} {% set content %} {% if tagGroups|length %} {% for tagGroup in tagGroups %} {% endfor %}
{{ "Name"|t }} {{ "Handle"|t }}
{{ tagGroup.name|t }} {{ tagGroup.handle }}
{% endif %}
{{ "New Tag Group"|t }}
{% endset %} {% set js %} new Craft.AdminTable({ tableSelector: '#taggroups', noObjectsSelector: '#notaggroups', deleteAction: 'tags/deleteTagGroup', confirmDeleteMessage: '{{ "Are you sure you want to delete “{name}” and all its tags?"|t }}', }); {% endset %} {% includeJs js %}