{% extends "newbase.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Rowsandall Virtual Race{% endblock %} {% block scripts %} {% include "monitorjobs.html" %} {% endblock %} {% block main %}

{{ race.name }}

  • Course

    {{ coursediv|safe }} {{ coursescript|safe }}
  • Race Information

    Course{{ race.course }}
    Distance{{ race.sessionvalue }} m
    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 == 'adddisciplinebutton' %}

    Register New Boat

    {% 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       Class Boat Time Distance Details
    {{ forloop.counter }} {{ result.username }} {{ result.teamname }} {{ result.age }} {{ result.sex }} {{ result.weightcategory }} {{ result.boatclass }} {{ result.boattype }} {{ result.duration |durationprint:"%H:%M:%S.%f" }} {{ result.distance }} m Details
      {{ result.username }} {{ result.teamname }} {{ result.age }} {{ result.sex }} {{ result.weightcategory }} {{ result.boatclass }} {{ result.boattype }} DNS
    {% else %} No results yet {% endif %}

  • {% if form %}
  • Filter Results

    {{ form.as_table }}
    {% csrf_token %}

  • {% endif %}
  • {% if records %}

    Registered Competitors

    {% for record in records %} {% if record.userid == rower.id and 'withdrawbutton' in buttons %} {% endif %} {% endfor %}
    Name Team Name Class Boat Age Gender Weight Category
    {{ record.username }} {{ record.teamname }} {{ record.boatclass }} {{ record.boattype }} {{ record.age }} {{ record.sex }} {{ record.weightcategory }} Withdraw
    {% 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. Please note the registration deadline. You must register before this deadline. You can always withdraw from participating before the registration deadline or the start of the race window, whichever is earlier.

    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.

{% endblock %}