blob: d7492fc70aca44c233c3c4071e44ab890668019f (
plain)
1
2
3
4
5
6
7
8
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 %}
|