44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
{% extends "newbase.html" %}
|
|
|
|
{% block title %}Change Rower Workflow Page Settings{% endblock %}
|
|
|
|
{% block main %}
|
|
<script type="text/javascript" src="/static/js/reorderSelect.js"></script>
|
|
<script type="text/javascript" src="/static/admin/js/jquery.min.js"></script>
|
|
<script type="text/javascript" src="/static/admin/js/jquery.init.js"></script>
|
|
|
|
<h1>Change Workflow Page Layout for {{ rower.user.first_name }} {{ rower.user.last_name }}</h1>
|
|
|
|
<ul class="main-content">
|
|
<li>
|
|
<p>On this page, you can configure the content of your "Workflow" page
|
|
for each workout. If you want to remove an element, change it to "None".
|
|
You can add one new element at a time.</p>
|
|
</li>
|
|
<li>
|
|
<form enctype="multipart/form-data" action="" method="post">
|
|
{{ middlepanel_formset.management_form }}
|
|
<table>
|
|
{{ middlepanel_formset.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input class="grid_2 alpha button" type="submit" value="Save">
|
|
</form>
|
|
</li>
|
|
{% if workoutid %}
|
|
<li>
|
|
<p>
|
|
<a class="button" href="/rowers/workout/{{ workoutid }}/workflow/">Return to Workout</a>
|
|
</p>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_profile.html' %}
|
|
{% endblock %}
|