39 lines
787 B
HTML
39 lines
787 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
{% load tz %}
|
|
|
|
{% block scripts %}
|
|
{% include "monitorjobs.html" %}
|
|
{% endblock %}
|
|
|
|
{% block title %}Comment Session {% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Messages {{ plannedession.name }}</h1>
|
|
|
|
<p>With this form, you can send an email message to selected Challenge participants</p>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_2">
|
|
<form enctype="multipart/form-data" method="post">
|
|
<table width=100%>
|
|
{{ userform.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Send">
|
|
</form>
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% if 'racing' in active %}
|
|
{% include 'menu_racing.html' %}
|
|
{% else %}
|
|
{% include 'menu_plan.html' %}
|
|
{% endif %}
|
|
{% endblock %}
|