33 lines
486 B
HTML
33 lines
486 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}View Workout {% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<script src="https://d3js.org/d3.v6.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
{% if user.is_authenticated and mayedit %}
|
|
<h1>Indoor Rower Power Histogram</h1>
|
|
<ul class="main-content">
|
|
<li class="grid_4">
|
|
|
|
{{ the_div|safe }}
|
|
|
|
</li>
|
|
</ul>
|
|
{{ interactiveplot |safe }}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_workout.html' %}
|
|
{% endblock %}
|