Private
Public Access
1
0
Files
rowsandall/rowers/templates/newchallengechoice.html
Sander Roosendaal 196548fdcc staticfiles to static
2021-04-14 10:00:14 +02:00

61 lines
1.5 KiB
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}New Virtual Challenge{% endblock %}
{% block main %}
<h1>What type of challenge do you want to create?</h1>
<ul class="main-content">
<li class="rounder">
<h2>Course Challenge</h2>
<a href="/rowers/virtualevent/create/">
<div class="vignet">
<img src="/static/img/HOCR.png"
alt="Marked Course">
</div>
</a>
<p>On-the-water challenge with a course. You have to row through
all the gates on the course to create a valid entry. Ideal for
local challenges.
</p>
</li>
<li class="rounder">
<h2>Time or Distance Challenge</h2>
<a href="/rowers/virtualevent/createfastest/">
<div class="vignet">
<img src="/static/img/sculler.png"
alt="Marked Course">
</div>
</a>
<p>On-the-water challenge over a set time or distance. This can be rowed
on any body of water in the world. Ideal to create a global on-the-water
challenge.
</p>
</li>
<li class="rounder">
<h2>Indoor Rowing Challenge</h2>
<a href="/rowers/virtualevent/createindoor/">
<div class="vignet">
<img src="/static/img/domca.png"
alt="Marked Course">
</div>
</a>
<p>Indoor rowing challenge over a set time or distance. This can be rowed
on any indoor rowing machine. Dial up the given distance or time and row!
Ideal to create a global indoor rowing
challenge.
</p>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_racing.html' %}
{% endblock %}