Private
Public Access
1
0

stopped at empower fix (line 122 in urls.py)

This commit is contained in:
Sander Roosendaal
2018-09-28 10:56:51 +02:00
parent 40c9a789b7
commit 6ab3c08859
13 changed files with 650 additions and 169 deletions

View File

@@ -1,23 +1,24 @@
{% extends "base.html" %}
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Rowsandall Workouts Summary Export{% endblock %}
{% block content %}
<div class="grid_12">
<form enctype="multipart/form-data" method="post">
<div class="grid_4 alpha">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
</div>
<div class="grid_2">
<input class="button green" type="submit" value="Submit">
</div>
</form>
<div class="grid_6 omega">
{% block main %}
<h1>Export all workouts</h1>
<ul class="main-content">
<li class="grid_2">
<p>
<form enctype="multipart/form-data" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<input class="green button" type="submit" value="Submit">
</form>
</p>
</li>
<li class="grid_2">
<p>
With this form, you can export a summary table for all workouts within a selected date range.
The table will be sent to you as a CSV file which can be opened in excel. The table contains
@@ -27,7 +28,11 @@
By setting the start date to your registration date or earlier and the end date to today,
you will receive all workout data we are storing for you.
</p>
</div>
</div>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_profile.html' %}
{% endblock %}