33 lines
541 B
HTML
33 lines
541 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Rowsandall Training Plans{% endblock %}
|
|
|
|
|
|
{% block main %}
|
|
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
|
|
|
|
|
|
<h1>Training Plan - {{ plan.name }}</h1>
|
|
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_4">
|
|
{{ the_div|safe }}
|
|
</li>
|
|
</ul>
|
|
|
|
<script src="https://d3js.org/d3.v6.js"></script>
|
|
{{ the_script | safe }}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_plan.html' %}
|
|
{% endblock %}
|