33 lines
541 B
HTML
33 lines
541 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Rowsandall Training Plans{% endblock %}
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<style>
|
|
#mypointer {
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
|
|
<div class="grid_12">
|
|
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<div class="grid_1 prefix_2 suffix_9 alpha">
|
|
<input class="button green" type="submit" value="Save">
|
|
</div>
|
|
</form>
|
|
|
|
|
|
</div>
|
|
{% endblock %}
|