{% extends "newbase.html" %} {% load static %} {% load rowerfilters %} {% load leaflet_tags %} {% block meta %} {% leaflet_js %} {% leaflet_css %} {% endblock %} {% block scripts %} {% include "monitorjobs.html" %} {% endblock %} {% block title %}{{ course.name }} {% endblock %} {% block og_title %}{{ course.name }} {% endblock %} {% block main %}

{{ course.name }}

  • Name{{ course.name }}
    Country{{ course.country }}
    Notes{{ course.notes|linebreaks }}
    Manager{{ course.manager }}

    {% if course in rower.followed_courses.all %} You have liked this course. If you use CrewNerd, you can synchronize this course to your phone in the app. {% else %} By clicking on the link below, you can add the course to your "liked" list, which can be synchronized with the CrewNerd app (from your phone). {% endif %}

    {% if course in rower.followed_courses.all %} Remove this course from your list of liked courses {% else %} Like this course {% endif %}

  • {{ mapdiv|safe }} {{ mapscript|safe }}
  • {% if records %}
  • Course Results

    {% for record in records %} {% endfor %}
    Name Boat Class Age Gender Weight Category Adaptive Time Distance Date
    {{ record.username }} {{ record.boattype }} {{ record.boatclass }} {{ record.age }} {{ record.sex }} {{ record.weightcategory }} {% if record.adaptiveclass == 'None' %}   {% else %} {{ record.adaptiveclass }} {% endif %} {{ record.duration |durationprint:"%H:%M:%S.%f" }} {{ record.distance }} m {{ record.workoutid|workoutdate }}

  • {% if workoutid %}
  • Suggested Workout: {{ workoutid|getworkoutname }}
    Measure time on course

  • {% endif %} {% if form %}
  • Filter Results

    {% if onlyme %} All Results {% else %} Only My Results {% endif %}

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

  • {% endif %} {% else %} {% if workoutid %}
  • Suggested Workout: {{ workoutid|getworkoutname }}
    Measure time on course

  • {% endif %} {% endif %} {% if ownrecords %}
  • Own (Private) Results

    {% for record in ownrecords %} {% endfor %}
    Time Distance Date
    {{ record.duration |durationprint:"%H:%M:%S.%f" }} {{ record.distance }} m {{ record.workoutid|workoutdate }}

  • {% endif %}
{% endblock %} {% block sidebar %} {% include 'menu_racing.html' %} {% endblock %}