{% 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 %}{{ standard.name }} {% endblock %}
{% block og_title %}{{ standard.name }} {% endblock %}
{% block main %}
-
| Name | {{ collection.name }} |
| Manager | {{ collection.manager.first_name }} {{ collection.manager.last_name }} |
| Notes | {{ collection.notes|linebreaks }} |
-
{% if request.user == collection.manager %}
Update these Standard Times
Deactivate this standard
{% endif %}
Download as CSV file
-
Standard Times
| Name▲▼ |
Distance▲▼ |
Standard Time▲▼ |
Boat Class▲▼ |
Boat Type▲▼ |
Gender▲▼ |
Weight Class▲▼ |
Adaptive Class▲▼ |
Skill Class▲▼ |
Minimum▲▼/Maximum Age▲▼ |
{% for standard in standards %}
| {{ standard.name }} |
{{ standard.coursedistance }} |
{{ standard.coursetime }} |
{{ standard.boatclass|boatclass }} |
{{ standard.boattype }} |
{{ standard.sex|sex }} |
{{ standard.weightclass|weight }} |
{{ standard.adaptiveclass|adaptive }} |
{{ standard.skillclass }} |
{{ standard.agemin }}/{{ standard.agemax }} |
{% endfor %}
{% endblock %}
{% block sidebar %}
{% include 'menu_racing.html' %}
{% endblock %}