40 lines
783 B
HTML
40 lines
783 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
{% load tz %}
|
|
|
|
|
|
|
|
{% block title %}Follow Virtual Challenge{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Follow {{ plannedession.name }}</h1>
|
|
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<p>To follow this challenge and receive all news per email, fill out your
|
|
email address and submit the form.
|
|
</li>
|
|
<li class="grid_2">
|
|
<form enctype="multipart/form-data" method="post">
|
|
<table width=100%>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% if 'racing' in active %}
|
|
{% include 'menu_racing.html' %}
|
|
{% else %}
|
|
{% include 'menu_plan.html' %}
|
|
{% endif %}
|
|
{% endblock %}
|