dr.botzo/templates/races/race_detail.html

15 lines
331 B
HTML

{% extends 'base.html' %}
{% block title %}race: {{ race.name }}{% endblock %}
{% block content %}
<ul>
{% for update in race.raceupdate_set.all %}
<li>{{ update.racer.nick }} &mdash; {{ update.update }} &mdash; {{ update.event_time }}</li>
{% endfor %}
</ul>
{% endblock %}
<!--
vi:tabstop=4:expandtab:autoindent
-->