Private
Public Access
1
0

better choices, simpler menu challenges

This commit is contained in:
Sander Roosendaal
2020-11-11 07:14:02 +01:00
parent b03708b07e
commit e154355cea
8 changed files with 62 additions and 12 deletions

View File

@@ -0,0 +1,59 @@
{% extends "newbase.html" %}
{% load staticfiles %}
{% 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. Ideal to create a global indoor rowing
challenge.
</p>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_racing.html' %}
{% endblock %}