{% extends "layout.html" %} {% block title %} {%- if active_kind == 'artist' -%}Artists {%- elif active_kind == 'character' -%}Characters {%- elif active_kind == 'series' -%}Series {%- elif active_kind == 'rating' -%}Ratings {%- elif active_kind == 'archive' -%}Archives {%- elif active_kind == 'source' -%}Sources {%- elif active_kind == 'post' -%}Posts {%- elif active_kind == 'user' -%}User Tags {%- else -%}Tags{%- endif -%} {% endblock %} {% block content %}

{%- if active_kind == 'artist' -%}Artists {%- elif active_kind == 'character' -%}Characters {%- elif active_kind == 'series' -%}Series {%- elif active_kind == 'rating' -%}Ratings {%- elif active_kind == 'archive' -%}Archives {%- elif active_kind == 'source' -%}Sources {%- elif active_kind == 'post' -%}Posts {%- elif active_kind == 'user' -%}User Tags {%- else -%}All Tags{%- endif -%}

🏷️ All 🎨 Artists 👤 Characters 📺 Series ⚠️ Ratings 🗜️ Archives 🌐 Sources 📌 Posts # User
{% if tag_data %}
{% for tag in tag_data %}
{% for image in tag.images %} {% endfor %} {% if tag.images|length == 0 %}
{% endif %}
{%- if tag.kind == 'artist' -%}🎨 {%- elif tag.kind == 'character' -%}👤 {%- elif tag.kind == 'series' -%}📺 {%- elif tag.kind == 'rating' -%}⚠️ {%- elif tag.kind == 'archive' -%}🗜️ {%- elif tag.kind == 'source' -%}🌐 {%- elif tag.kind == 'post' -%}📌 {%- else -%}#{%- endif -%} {{ tag.name }} {{ tag.count }}
{% endfor %}
{% else %}

No tags found in this category.

{% endif %} {% endblock %}