42 lines
870 B
HTML
42 lines
870 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/createplan">Training Target</a>
|
|
{% else %}
|
|
<a class="button blue small" href="/rowers/promembership">Training Target</a>
|
|
{% endif %}
|
|
</p>
|
|
<p>
|
|
Experiments with a training target and plan builder
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|