X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/0ffd0b004ed18d4b39085677fb4966dc883cb4aa..0a08745958649d32c95b1a5da115dde92614c629:/questions/templates/questions/question_detail.html diff --git a/questions/templates/questions/question_detail.html b/questions/templates/questions/question_detail.html index 5c6535a..e0e3e9e 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 "body" %} -

{{ question }}

+{% block titleextra %}{{ question|linebreaksbr }} :: {% endblock %} +{% block body %} +

{{ 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 %}