Django 1.8
[prawokultury.git] / questions / templates / questions / question_detail.html
1 {% extends "base.html" %}
2
3 {% block titleextra %}{{ question|linebreaksbr }} :: {% endblock %}
4 {% block body %}
5 <h1>{{ question|linebreaksbr }}</h1>
6
7 <div class="normal">
8 {% if question.tags.all.count %}
9 <p>Tematy: 
10 {% for tag in question.tags.all %}
11     <a href="{% url 'questions' %}?tag={{ tag.slug }}">{{ tag }}</a>{% if not forloop.last %} / {% endif %}
12 {% endfor %}
13 {% endif %}
14 </p>
15
16 {{ question.answer }}
17
18 <p>{{ question.answered_by }}</p>
19
20 <p><a href="{% url 'questions' %}">Wróć do listy pytań.</a></p>
21
22 </div>
23 {% endblock %}