summaryrefslogtreecommitdiff
path: root/static/website/templates/fetch_tutorials.html
blob: 246c35feff4d60c9e04c00683fac7279015ab088 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends 'website/templates/base.html' %}
{% block content %}
{% for tut in tutorials %}
    <div class="tutorial">
        <a href="{% url 'website:fetch_questions' category tut.tutorial_name %}">
            {{tut.tutorial_name}}
        </a>
    </div>
{% endfor %}
{% endblock %}