31 lines
749 B
HTML
31 lines
749 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Workout Data Resample{% endblock %}
|
|
|
|
{% block main %}
|
|
<h1>Workout Data Resample for {{ workout.name }}</h1>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_4">
|
|
<p>This functionality resamples the data to 1 second intervals. This can be useful in
|
|
case there are gaps larger than 30 seconds in the data, which prevent the creation
|
|
of a correct CP chart.
|
|
</p>
|
|
<p>
|
|
<form method="post" enctype="multipart/form-data">
|
|
{{ form.as_table }}
|
|
{% csrf_token %}
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_workout.html' %}
|
|
{% endblock %}
|