{% extends "two_column_body.html" %} {% import "macros.html" as macros %} {% block title %}{{ page_title }}{% 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 %}Suggested tag was used for questions{% endtrans %}
{{ macros.tag_widget(tag.name, is_link = False) }} ×{{ 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 %} {% endblock %}