PonyConf/proposals/templates/proposals/topic_list.html

20 lines
326 B
HTML

{% extends 'base.html' %}
{% block topictab %} class="active"{% endblock %}
{% block content %}
<h1>Topics:</h1>
<ul>
{% for topic in topics %}
<li>
<a href="{% url 'list-talks-by-topic' topic.slug %}">{{ topic.name }}</a>
</li>
{% empty %}
<li><i>No topic.</i></li>
{% endfor %}
</ul>
{% endblock %}