42 lines
903 B
HTML
42 lines
903 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Rowsandall - Analysis {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>The Labs</h1>
|
|
<p>This is where whacky new ideas are tested</p>
|
|
|
|
|
|
<div class="grid_12 alpha">
|
|
<div class="grid_6 suffix_6 alpha">
|
|
<img src="/static/img/rivercurrent.jpg" width="400">
|
|
</div>
|
|
<div class="grid_6 alpha">
|
|
<h2>Basic</h2>
|
|
|
|
</div>
|
|
|
|
<div class="grid_6 omega">
|
|
<h2>Pro</h2>
|
|
<div class="grid_2 alpha">
|
|
<p>
|
|
{% if user|is_planmember %}
|
|
<a class="button blue small" href="/rowers/fitness-progress">Power Progress</a>
|
|
{% else %}
|
|
<a class="button blue small" href="/rowers/promembership">Power Progress</a>
|
|
{% endif %}
|
|
</p>
|
|
<p>
|
|
Monitoring power duration evidence from all your workouts. Feel free to explore.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|