summaryrefslogtreecommitdiff
path: root/static/website/templates/get_tutorial.html
diff options
context:
space:
mode:
authorJayaram Pai2013-12-01 13:09:49 +0530
committerJayaram Pai2013-12-01 13:09:49 +0530
commit8533d61eb93ecb4c943ec3c3b83dfef87b20a916 (patch)
tree4fa52f3c02fe1f5c50a4d386cc670faeaae6d7e4 /static/website/templates/get_tutorial.html
parentaf3e4d8942680a5c08492d2ed179d8e401a8bf57 (diff)
downloadFOSSEE-Forum-8533d61eb93ecb4c943ec3c3b83dfef87b20a916.tar.gz
FOSSEE-Forum-8533d61eb93ecb4c943ec3c3b83dfef87b20a916.tar.bz2
FOSSEE-Forum-8533d61eb93ecb4c943ec3c3b83dfef87b20a916.zip
basic auth and new-question
Diffstat (limited to 'static/website/templates/get_tutorial.html')
-rw-r--r--static/website/templates/get_tutorial.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/static/website/templates/get_tutorial.html b/static/website/templates/get_tutorial.html
new file mode 100644
index 0000000..159f342
--- /dev/null
+++ b/static/website/templates/get_tutorial.html
@@ -0,0 +1,12 @@
+{% extends 'website/templates/base.html' %}
+{% block content %}
+<h4>{{question.title}}</h4>
+<p>
+ {{ question.body }}
+</p>
+
+<b>Replies</b>
+{% for reply in replies %}
+ {{ reply.body }}
+{% endfor %}
+{% endblock %}