diff --git a/rowers/templates/analysis.html b/rowers/templates/analysis.html index f64f716b..e18454fc 100644 --- a/rowers/templates/analysis.html +++ b/rowers/templates/analysis.html @@ -141,9 +141,9 @@

{% if user|is_planmember %} - Lab + The Labs {% else %} - Lab + The Labs {% endif %}

diff --git a/rowers/templates/laboratory.html b/rowers/templates/laboratory.html new file mode 100644 index 00000000..9b5b2964 --- /dev/null +++ b/rowers/templates/laboratory.html @@ -0,0 +1,41 @@ +{% extends "base.html" %} +{% load staticfiles %} +{% load rowerfilters %} + +{% block title %}Rowsandall - Analysis {% endblock %} + +{% block content %} + +

The Labs

+

This is where whacky new ideas are tested

+ + +
+
+ +
+
+

Basic

+ +
+ +
+

Pro

+
+

+ {% if user|is_planmember %} + Power Progress + {% else %} + Power Progress + {% endif %} +

+

+ Monitoring power duration evidence from all your workouts. Feel free to explore. +

+
+
+
+ + + +{% endblock %} diff --git a/rowers/urls.py b/rowers/urls.py index 4f0e818f..ab554f47 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -393,6 +393,7 @@ urlpatterns = [ 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'^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'^starttrial$',views.start_trial_view), url(r'^startplantrial$',views.start_plantrial_view),