{% 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|linebreaks }}

{% if request.user.is_anonymous %}

Registered users of rowsandall.com can participate in this event. Participation is free, unless specified differently in the race comment above.

{% else %}

See race rules below. Participation to this race is free, unless specified differently in the race comment above.

{% 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 Boat Age Weight Category
{{ record.username }} {{ record.teamname }} {{ record.boattype }} {{ record.age }} {{ record.weightcategory }}
{% endif %}

Rules

Virtual races are intended as an informal way to add a competitive element to training and as a quick way to set up and manage small regattas.

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 course 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.

Virtual races are intended as an informal way to add a competitive element to training. Virtual races are not refereed or staffed to provide for participants safety. Individual participants are entirely responsible for their safety while participating in a virtual race.

Course

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