1 {% extends "base.html" %}
2 {% load url from future %}
4 {% block "titleextra" %}{{ question|linebreaksbr }} :: {% endblock %}
6 <h1>{{ question|linebreaksbr }}</h1>
9 {% if question.tags.all.count %}
11 {% for tag in question.tags.all %}
12 <a href="{% url 'questions' %}?tag={{ tag.slug }}">{{ tag }}</a>{% if not forloop.last %} / {% endif %}
19 <p><a href="{% url 'questions' %}">Wróć do listy pytań.</a></p>