{% extends "two_column_body.html" %} {% import "macros.html" as macros %} {% block title %}{{ page_title }}{% endblock %} {% block page_class %}moderated-tags-page{% endblock %} {% block content %} {% include "tags/header.html" %} {% if tags %} {% for tag in tags %} {% endfor %}
{% trans %}Tag{% endtrans %} {% trans %}Suggested by{% endtrans %} {% trans %}Your decision{% endtrans %} {% trans %}Where the tag was used{% endtrans %}
{{ macros.tag_widget(tag.name, is_link = False) }} {{ macros.used_count(tag.used_count) }} {% for user in tag.suggested_by.all() %}

{{ user.get_profile_link() }}

{% endfor %}
{# inner table for the list of questions #} {% if tag.threads.count() == 0 %} {% else %} {% for thread in tag.threads.all() %} {% endfor %} {% endif %}
{% if tag.threads.count() > 1 %} {% endif %}
{% else %} {% trans %}Nothing found{% endtrans %} {% endif %} {% endblock %} {% block endjs %} {% compress js %} {% endcompress %} {% endblock %}