getting this out there so that i maybe feel motivated to make it not suck in the future
		
			
				
	
	
		
			15 lines
		
	
	
		
			331 B
		
	
	
	
		
			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 }} — {{ update.update }} — {{ update.event_time }}</li>
 | 
						|
  {% endfor %}
 | 
						|
</ul>
 | 
						|
{% endblock %}
 | 
						|
<!--
 | 
						|
    vi:tabstop=4:expandtab:autoindent
 | 
						|
 -->
 |