From 0b51a7d5195928863add40dc89939e22859e2800 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Tue, 28 Mar 2017 13:12:50 +0200 Subject: [PATCH] first version of partnerparge --- rowers/templates/base.html | 24 +++++++++++++++---- rowers/templates/partners.html | 43 ++++++++++++++++++++++++++++++++++ rowers/urls.py | 1 + 3 files changed, 63 insertions(+), 5 deletions(-) create mode 100644 rowers/templates/partners.html diff --git a/rowers/templates/base.html b/rowers/templates/base.html index 11e99b6c..86d4840f 100644 --- a/rowers/templates/base.html +++ b/rowers/templates/base.html @@ -36,7 +36,21 @@ {% endif %}
-

 

+
+
+ +
+ +
+ +
+ +
{% if user.is_authenticated %}

Password Change

@@ -189,14 +203,14 @@
+
+ +
-
- -
diff --git a/rowers/templates/partners.html b/rowers/templates/partners.html new file mode 100644 index 00000000..bc16ff4e --- /dev/null +++ b/rowers/templates/partners.html @@ -0,0 +1,43 @@ + +{% extends "base.html" %} +{% block title %}About us{% endblock title %} +{% block content %} + +
+

Are you interested in partnering with Rowsandall.com?

+ +

We are open to working together with partners serving the rowing + community. To maintain maximum transparency to our users, we have + the following principles for collaboration:

+ +
    +
  1. On blog.rowsandall.com, analytics.rowsandall.com and in through + our Twitter account, we write about hardware, software, and other + rowing related kit that we have used, tested, and are enthusiastic about.
  2. +
  3. If you send us a unit, or a piece of software to test, we will not + write a public review about it. If we like the unit (software, etc) and + keep using it, you may see it appear in our blog posts. If there are + reasons why we are not satisfied with the unit, but we feel that + an improved version would serve the rowing community, we will contact + you with constructive criticism. We will do our best not to mention + your product in + a negative way on our public blogs or twitter. However, we retain the + freedom to engage in online discussions about your product, but will + try to keep our communication factual.
  4. +
  5. We encourage vendors to send us their products for testing. We are + especially interested in software and hardware used for indoor and + on-the-water rowing. We want to avoid the hassle of sending back + your products, so we will not send back any item that has a value of + less than 1000 EURO. If you want us to test an item of higher value, + please mention this when you contact us.
  6. +
+ +
+ + + +
+

 

+
+ + {% endblock content %} diff --git a/rowers/urls.py b/rowers/urls.py index ae58dcad..18ab3665 100644 --- a/rowers/urls.py +++ b/rowers/urls.py @@ -194,6 +194,7 @@ urlpatterns = [ url(r'^workout/fusion/(?P\d+)/(?P\d+-\d+-\d+)/(?P\w+.*)$',views.workout_fusion_list), url(r'^physics$',TemplateView.as_view(template_name='physics.html'),name='physics'), + url(r'^partners$',TemplateView.as_view(template_name='partners.html'),name='partners'), url(r'^workout/(\d+)/$',views.workout_view), url(r'^workout/(\d+)/addtimeplot$',views.workout_add_timeplot_view), url(r'^workout/(\d+)/addpiechart$',views.workout_add_piechart_view),