blob: 524930f3798e5cafa459016e52ae7550394a3b73 (
plain)
1
2
3
4
5
6
7
8
9
|
{% extends 'website/templates/base.html' %}
{% block content %}
{% for tut in tutorials %}
<a href="{% url 'website:fetch_posts' category tut.tutorial_name %}">
{{tut.tutorial_name}}
</a>
<br>
{% endfor %}
{% endblock %}
|