23 lines
405 B
HTML
23 lines
405 B
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
{% 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/alerts/">Try out Alerts</a>
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_analytics.html' %}
|
|
{% endblock %}
|