Private
Public Access
1
0

auto refresh using ajax in virtualevents_view

This commit is contained in:
Sander Roosendaal
2018-04-22 15:56:14 +02:00
parent 98ab345151
commit e6ddf80b6c
4 changed files with 87 additions and 28 deletions

View File

@@ -0,0 +1,22 @@
<p>
<table width="100%" class="listtable shortpadded">
<thead>
<tr>
<th>Date</th>
<th>Event</th>
<th>Country</th>
<th>Course</th>
</tr>
</thead>
<tbody>
{% for race in races %}
<tr>
<td>{{ race.startdate }}</td>
<td><a href="/rowers/virtualevent/{{ race.id }}">{{ race.name }}</a></td>
<td>{{ race.course.country }}</td>
<td>{{ race.course.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</p>