{% extends 'booru/base.html' %} {% block css %} {% load static %} {% endblock %} {% block scripts %} {% endblock %} {% block body %} {% load markdownify %} {% load permission_tags %}

Tag: {{tag}}

Edit History {% if user|can:'manage_tags' %} Delete {% endif %}
{% if tag.description %} {% endif %} {% if tag.associated_link %} {% endif %} {% if tag.associated_user %} {% endif %} {% if tag.timestamp %} {% endif %} {% if tag.author %} {% endif %} {% if tag.aliases %} {% endif %} {% if tag.from_implications.count > 0 %} {% endif %} {% if tag.to_implications.count > 0 %} {% endif %}
Description: {{tag.description|markdownify}}
Category: {{tag.category}}
Associated links: {{tag.associated_link}}
Associated user: {{tag.associated_user}}
Date: {{tag.timestamp}}
Author: {{tag.author}}
Aliases: {% for tag in tag.aliases.all %} {{tag}}{% if not forloop.last %},{% endif %} {% endfor %}
Implies: {% for implication in tag.from_implications.all %} {% with color='#'|add:implication.to_tag.category.color %} ? {{implication.to_tag}} {% endwith %} {% if not forloop.last %},{% endif %} {% endfor %}
Is implied in: {% for implication in tag.to_implications.all %} {% with color='#'|add:implication.from_tag.category.color %} ? {{implication.from_tag}} {% endwith %} {% if not forloop.last %},{% endif %} {% endfor %}
{% for post in last_post %} {% endfor %}
{% endblock %}