29 lines
503 B
HTML
29 lines
503 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Planned Sessions{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Load next week</h1>
|
|
|
|
<p>
|
|
<form enctype="multipart/form-data" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</p>
|
|
<p>
|
|
<a href="http://localhost:8898/{{ rower.training_plan_code }}">Link to plan</a>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_plan.html' %}
|
|
{% endblock %}
|