{% extends 'base.html' %} {% block title %}Tags | Admin | {{ settings.site_name }}{% endblock %} {% block content %}

Manage Tags

{{ tags|length }} tag{{ 's' if tags|length != 1 else '' }} total
{% if tags %}
{% for tag in tags %} {% endfor %}
Name Slug Articles Created Actions
{{ tag.name }} {{ tag.slug }} {% set article_count = tag.articles.count() %} {{ article_count }} {{ tag.created_at.strftime('%b %d, %Y') }}
{% else %}

No tags found

{% endif %}
{% if tags %}
Tag Cloud
{% for tag in tags %} {{ tag.name }} {{ tag.articles.count() }} {% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}