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