Private
Public Access
1
0
Files
rowsandall/rowers/templates/laboratory.html
2022-10-07 13:23:15 +02:00

23 lines
431 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Rowsandall - Analysis {% endblock %}
{% block main %}
<h1>The Labs</h1>
<p>This is where whacky new ideas are tested</p>
<p>Rower: {{ rower.user.first_name }}</p>
<p>
<a href="/rowers/analysis/instrokeanalysis/">Try out In-Stroke Analysis</a>
</p>
{% endblock %}
{% block sidebar %}
{% include 'menu_analytics.html' %}
{% endblock %}