diff --git a/rowers/templates/show_graph.html b/rowers/templates/show_graph.html
index 1221cc03..f6ecc9a4 100644
--- a/rowers/templates/show_graph.html
+++ b/rowers/templates/show_graph.html
@@ -12,8 +12,23 @@
{% endblock %}
{% block content %}
-
diff --git a/rowers/templates/workout_form.html b/rowers/templates/workout_form.html
index 65420ad6..be616ef9 100644
--- a/rowers/templates/workout_form.html
+++ b/rowers/templates/workout_form.html
@@ -2,6 +2,8 @@
{% load staticfiles %}
{% load rowerfilters %}
{% load tz %}
+
+
{% get_current_timezone as TIME_ZONE %}
{% block title %}{{ workout.name }}{% endblock %}
@@ -67,6 +69,20 @@
https://rowsandall.com/rowers/workout/{{ workout.id }}
|
+
+ | Share to |
+
+
+
+
+
+ |
| 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..1436e951 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 %}
|