moved fitness-trend to new lab page
This commit is contained in:
@@ -141,9 +141,9 @@
|
|||||||
<div class="grid_2 suffix_2 alpha">
|
<div class="grid_2 suffix_2 alpha">
|
||||||
<p>
|
<p>
|
||||||
{% if user|is_planmember %}
|
{% if user|is_planmember %}
|
||||||
<a class="button blue small" href="/rowers/fitness-progress">Lab</a>
|
<a class="button blue small" href="/rowers/laboratory">The Labs</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a class="button blue small" href="/rowers/promembership">Lab</a>
|
<a class="button blue small" href="/rowers/promembership">The Labs</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
41
rowers/templates/laboratory.html
Normal file
41
rowers/templates/laboratory.html
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{% 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 %}
|
||||||
@@ -393,6 +393,7 @@ urlpatterns = [
|
|||||||
url(r'^compatibility', TemplateView.as_view(template_name='compatibility.html'),name='about'),
|
url(r'^compatibility', TemplateView.as_view(template_name='compatibility.html'),name='about'),
|
||||||
url(r'^videos', TemplateView.as_view(template_name='videos.html'),name='videos'),
|
url(r'^videos', TemplateView.as_view(template_name='videos.html'),name='videos'),
|
||||||
url(r'^analysis', TemplateView.as_view(template_name='analysis.html'),name='analysis'),
|
url(r'^analysis', TemplateView.as_view(template_name='analysis.html'),name='analysis'),
|
||||||
|
url(r'^laboratory', TemplateView.as_view(template_name='laboratory.html'),name='laboratory'),
|
||||||
url(r'^promembership', TemplateView.as_view(template_name='promembership.html'),name='promembership'),
|
url(r'^promembership', TemplateView.as_view(template_name='promembership.html'),name='promembership'),
|
||||||
url(r'^starttrial$',views.start_trial_view),
|
url(r'^starttrial$',views.start_trial_view),
|
||||||
url(r'^startplantrial$',views.start_plantrial_view),
|
url(r'^startplantrial$',views.start_plantrial_view),
|
||||||
|
|||||||
Reference in New Issue
Block a user