dr.botzo/templates/races/index.html

15 lines
274 B
HTML

{% extends 'base.html' %}
{% block title %}races{% endblock %}
{% block content %}
<ul>
{% for race in races %}
<li><a href="{% url 'race_detail' race.key %}">{{ race.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}
<!--
vi:tabstop=4:expandtab:autoindent
-->