From 1bbfb4a44d42aca151f60a614ebeffbd44ef6e4d Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Wed, 27 Nov 2013 13:35:55 +0200 Subject: A bunch of fixes --- templates/issues/question.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 templates/issues/question.html (limited to 'templates/issues/question.html') diff --git a/templates/issues/question.html b/templates/issues/question.html new file mode 100644 index 0000000..8da6e10 --- /dev/null +++ b/templates/issues/question.html @@ -0,0 +1,12 @@ +{% extends "issues/index.html" %} +{% load i18n %} + +{% block main %} +
+

{{ question.question }}

+

{{ question.description|default:"" }}

+ {% for i in question.choice_set.all %} + {{ i.choice }} + {% endfor %} +
+{% endblock main %} -- cgit v1.2.3