{% extends "admin/base.html" %} {% block title %}Tags · bragi admin{% endblock %} {% block content %}

Tags

Tags are created by adding them to a post. Here you can rename, merge, or delete them. Renaming a slug (or merging) keeps the old URL working with a 301.

{% if entries %} {% for e in entries %} {% set tag = e.tag %} {% endfor %}
Tag Slug Posts Actions
{{ tag.label }} {% if e.public_url %}{{ tag.slug }} {% else %}{{ tag.slug }}{% endif %} {{ e.count }}
Rename
{% if all_tags | length > 1 %}
Merge
{% endif %}
{% else %}

No tags yet. Add tags to a post and they'll appear here.

{% endif %} {% endblock %}