| Comments |
diff --git a/rowers/templates/workout_view.html b/rowers/templates/workout_view.html
index a823aec1..75f9b0c6 100644
--- a/rowers/templates/workout_view.html
+++ b/rowers/templates/workout_view.html
@@ -27,9 +27,20 @@
- {{ workout.name }}
+ {{ workout.name }}
+
+
+
+
+
-
+
| Rower: | {{ first_name }} {{ last_name }} |
diff --git a/rowsandall_app/settings.py b/rowsandall_app/settings.py
index 3020084e..a7f25d88 100644
--- a/rowsandall_app/settings.py
+++ b/rowsandall_app/settings.py
@@ -64,6 +64,7 @@ INSTALLED_APPS = [
'cookielaw',
'django_extensions',
'tz_detect',
+ 'django_social_share',
]
AUTHENTICATION_BACKENDS = (
diff --git a/templates/base.html b/templates/base.html
index 77fa6213..21de4904 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -3,6 +3,8 @@
{% load rowerfilters %}
{% endblock %}
+
+
{% block teams %}
{% if user.is_authenticated and user|has_teams %}
diff --git a/templates/basebase.html b/templates/basebase.html
index aca81e16..4e83af67 100644
--- a/templates/basebase.html
+++ b/templates/basebase.html
@@ -1,5 +1,6 @@
{% load leaflet_tags %}
{% load cookielaw_tags %}
+
{% load tz_detect %}
{% tz_detect %}
{% load analytical %}
@@ -42,8 +43,34 @@
{% block meta %} {% endblock %}
{% leaflet_js %}
{% leaflet_css %}
+
+
+
{% analytical_head_bottom %}
@@ -79,7 +106,10 @@
- Free Data and Analysis. For Rowers. By Rowers.
+ Free Data and Analysis. For Rowers. By Rowers.
+
|