Private
Public Access
1
0
Files
rowsandall/rowers/templates/export_workouts_daterange.html
2026-03-16 14:13:02 +01:00

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 %}