X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/548d9fe735b1c4f04c296f01a3bf73149f627005..5fc3b1a4a446715d859440b474ae206ff672b4cd:/questions/templates/questions/question_detail.html diff --git a/questions/templates/questions/question_detail.html b/questions/templates/questions/question_detail.html index be19018..dea7e14 100755 --- a/questions/templates/questions/question_detail.html +++ b/questions/templates/questions/question_detail.html @@ -1,11 +1,22 @@ {% extends "base.html" %} +{% load url from future %} -{% block "titleextra" %}{{ question }} :: {% endblock %} +{% block "titleextra" %}{{ question|linebreaksbr }} :: {% endblock %} {% block "body" %} -

{{ question }}

+

{{ question|linebreaksbr }}

+ +
+{% if question.tags.all.count %} +

Tematy: +{% for tag in question.tags.all %} + {{ tag }}{% if not forloop.last %} / {% endif %} +{% endfor %} +{% endif %} +

{{ question.answer }}

Wróć do listy pytań.

-{% endblock %} \ No newline at end of file +
+{% endblock %}