{% extends 'booru/base.html' %} {% block css %} {% load static %} {% endblock %} {% block scripts %} {% endblock %} {% block body %} {% load markdownify %} {% load permission_tags %}
| 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 %} |