Private
Public Access
1
0

added virtual event link

This commit is contained in:
Sander Roosendaal
2018-04-16 09:49:38 +02:00
parent ea9ef00be8
commit 2c979bf27b
5 changed files with 129 additions and 7 deletions

View File

@@ -0,0 +1,55 @@
{% extends "base.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}New Virtual Race{% endblock %}
{% block content %}
<div class="grid_12 alpha">
<h1>{{ race.name }}</h1>
</div>
<div class="grid_12 alpha">
<div class="grid_8 alpha">
<h2>Race Information</h2>
<p>
<table class="listtable shortpadded" width="80%">
<tbody>
<tr>
<th>Course</th><td>{{ race.course }}</td>
</tr>
<tr>
<th>Date</th><td>{{ race.startdate }}</td>
</tr>
<tr>
<th>Race Window</th><td>{{ race.startdate }} {{ race.start_time }} to {{ race.enddate }} {{ race.end_time }}</td>
</tr>
<tr>
<th>Results Submission Deadline</th><td>{{ race.evaluation_closure }}</td>
</tr>
<tr>
<th>Organizer</th><td>{{ race.manager.first_name }} {{ race.manager.last_name }}</td>
</tr>
<tr>
<th>Contact Email</th><td>{{ race.contact_email }}</td>
</tr>
<tr>
<th>Contact Phone</th><td>{{ race.contact_phone }}</td>
</tr>
</tbody>
</table>
</p>
</div>
<div class="grid_4 omega">
<h2>Course</h2>
{{ coursediv|safe }}
{{ coursescript|safe }}
</div>
</div>
{% endblock %}