{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}New Virtual Race{% endblock %} {% block content %}

{{ race.name }}

Race Information

{% if race.has_registration %} {% endif %}
Course{{ race.course }}
Registration closure {{ race.registration_closure }}
Date{{ race.startdate }}
Race Window{{ race.startdate }} {{ race.start_time }} to {{ race.enddate }} {{ race.end_time }}
Results Submission Deadline{{ race.evaluation_closure }}
Organizer{{ race.manager.first_name }} {{ race.manager.last_name }}
Contact Email{{ race.contact_email }}
Contact Phone{{ race.contact_phone }}
Comment{{ race.comment }}

{% if request.user.is_anonymous %}

Registered users of rowsandall.com can participate in this event.

{% else %}

See race rules below.

{% for button in buttons %} {% if button == 'registerbutton' %} Register {% endif %} {% if button == 'submitbutton' %} Submit Result {% endif %} {% if button == 'resubmitbutton' %} Submit New Result {% endif %} {% if button == 'withdrawbutton' %} Withdraw {% endif %} {% if button == 'editbutton' %} Edit Race {% endif %} {% endfor %}

{% endif %}

Results

{% if results or dns %} {% for result in results %} {% endfor %} {% for result in dns %} {% endfor %}
  Name Team Name       Boat Raw Time In Class Corrected Time Corrected Place
{{ forloop.counter }} {{ result.username }} {{ result.teamname }} {{ result.age }} {{ result.sex }} {{ result.weightcategory }} {{ result.boattype }} {{ result.duration |durationprint:"%H:%M:%S.%f" }}
  {{ result.username }} {{ result.teamname }} {{ result.age }} {{ result.sex }} {{ result.weightcategory }} {{ result.boattype }} DNS
{% else %} No results yet {% endif %}

{% if records %}

Registered Competitors

{% for record in records %} {% endfor %}
Name Team Name Age Weight Category
{{ record.username }} {{ record.teamname }} {{ record.weightcategory }} {{ record.age }}
{% endif %}

Rules

As a rowsandall.com user, you can register to take part in this event. If the race organizer has set a registration deadline, you must register before the deadline. Otherwise, it is sufficient to register before the start of the race window. You can always withdraw from participating before the registration deadline or the start of the race window, if no registration deadline was set.

After the start of the race window and before the submission deadline, you can submit results by linking the race to one of your uploaded workouts. The workout start time must be within the race window and your trajectory must pass through the blue polygons on the course map (in the right order), for your result to be valid.

The results table has a link to a page where details of your workout are shown.

Race results are stored permanently and are not deleted when you delete the respective workout or remove your account. By registering, you agree with this and the race rules.

Virtual Racing on rowsandall.com is honors based. Please be a good sport, submit real results rowed by you, and make sure you set the boat type correctly. For (future functionality) age and gender corrected times, please be sure your gender and birth date are set correctly in your user settings.

Course

{{ coursediv|safe }} {{ coursescript|safe }}
{% endblock %}