Private
Public Access
1
0
Files
rowsandall/rowers/templates/histo_single.html
2024-03-24 14:30:16 +01:00

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