25 lines
699 B
HTML
25 lines
699 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Export Workouts{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-md-8 offset-md-2">
|
|
<h2>Export All Your Workouts</h2>
|
|
<p>Select a date range to export your workouts as a ZIP file
|
|
or multiple ZIP files if you have a large number of workouts.</p>
|
|
<form method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input name="daterange" type="submit" value="Export Workouts">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|