initial incomplete version
This commit is contained in:
61
rowers/templates/indoorvirtualeventcreate.html
Normal file
61
rowers/templates/indoorvirtualeventcreate.html
Normal file
@@ -0,0 +1,61 @@
|
||||
{% extends "newbase.html" %}
|
||||
{% load staticfiles %}
|
||||
{% load rowerfilters %}
|
||||
|
||||
{% block title %}New Virtual Race{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
|
||||
<h1>New Indoor Virtual Race</h1>
|
||||
|
||||
<ul class="main-content">
|
||||
<li class="grid_4">
|
||||
<p>With this form, you can create a new virtual race. After you submit
|
||||
the form, the race is created and will be visible to all users. From
|
||||
that moment, only the site admin can delete the race
|
||||
(admin@rowsandall.com). You can still edit the race until
|
||||
the start of the race window.
|
||||
</p>
|
||||
</li>
|
||||
|
||||
<li class="grid_3">
|
||||
<form enctype="multipart/form-data" action="{{ formloc }}" method="post">
|
||||
{% if form.errors %}
|
||||
<p style="color: red;">
|
||||
Please correct the error{{ form.errors|pluralize }} below.
|
||||
</p>
|
||||
{% endif %}
|
||||
<p>
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
</p>
|
||||
<p>
|
||||
{% csrf_token %}
|
||||
<input type="submit" value="Save">
|
||||
</p>
|
||||
</form>
|
||||
</li>
|
||||
<li class="grid_1">
|
||||
<p>
|
||||
<ul>
|
||||
<li>All times are local times in the time zone you select</li>
|
||||
<li>Adding a contact phone number and email is not mandatory, but we
|
||||
strongly recommend it.</li>
|
||||
<li>If your event has a registration closure deadline, participants
|
||||
have to enter (and can withdraw) before the registration closure time.</li>
|
||||
<li>Participants can submit results until the evaluation closure time.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
{% endblock %}
|
||||
|
||||
{% block sidebar %}
|
||||
{% include 'menu_racing.html' %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user