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

Tags

{% if tags | length > 0 %} {% for tag in tags %} {% endfor %}
Name Slug Posts Actions
{{ tag.name }} {{ tag.slug }} {{ tag.count }} View
{% else %}

No tags yet. Create one above or add tags to posts.

{% endif %}
{% endblock %}