X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/0ffd0b004ed18d4b39085677fb4966dc883cb4aa..71e8973b1dfead567e58ec8e3e7b80a64865ba5f:/questions/templates/questions/question_detail.html diff --git a/questions/templates/questions/question_detail.html b/questions/templates/questions/question_detail.html index 5c6535a..b263830 100755 --- a/questions/templates/questions/question_detail.html +++ b/questions/templates/questions/question_detail.html @@ -1,14 +1,24 @@ {% 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 }} +

{{ question.answered_by }}

+

Wróć do listy pytań.

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