summaryrefslogtreecommitdiff
path: root/static/website/templates/fetch_questions.html
diff options
context:
space:
mode:
Diffstat (limited to 'static/website/templates/fetch_questions.html')
-rw-r--r--static/website/templates/fetch_questions.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/static/website/templates/fetch_questions.html b/static/website/templates/fetch_questions.html
new file mode 100644
index 0000000..d7492fc
--- /dev/null
+++ b/static/website/templates/fetch_questions.html
@@ -0,0 +1,9 @@
+{% extends 'website/templates/base.html' %}
+{% block content %}
+{{ category }}, {{ tutorial }}
+<br>
+Number of questions: {{ questions|length }} <br>
+{% for question in questions %}
+ <a href="{% url 'website:get_question' question.id %}"> {{ question.title }}</a>
+{% endfor %}
+{% endblock %}