diff --git a/rowers/templates/embedded_video_mini.html b/rowers/templates/embedded_video_mini.html index 466cb5e9..20288285 100644 --- a/rowers/templates/embedded_video_mini.html +++ b/rowers/templates/embedded_video_mini.html @@ -47,7 +47,7 @@ function copyText() { var tempInput = document.createElement("input"); tempInput.style = "position: absolute; left: -1000px; top: -1000px"; - tempInput.value = "{{ siteurl }}/rowers/video/{{ analysis.id|encode }}/"; + tempInput.value = "{{ siteurl }}/rowers/video/{{ analysis.id|encode }}/m/"; document.body.appendChild(tempInput); tempInput.select(); document.execCommand("copy"); @@ -108,19 +108,22 @@ function copyText() {
  • Playing the video will advance the data in synchronization. Use the regular YouTube controls to move around in the video and play it.

    +

    In this reduced view, you cannot edit the video analysis. There is a separate + view for that here. +

  • + href="https://www.facebook.com/sharer/sharer.php?u=https://rowsandall.com/rowers/video/{{ analysis.id|encode }}/m/"> Share diff --git a/rowers/views/workoutviews.py b/rowers/views/workoutviews.py index b72db049..592cbc14 100644 --- a/rowers/views/workoutviews.py +++ b/rowers/views/workoutviews.py @@ -131,7 +131,7 @@ def workout_video_view_mini(request,id=''): 'name': w.name }, { - 'url':reverse('workout_video_view',kwargs={'id':encoder.encode_hex(analysis.id)}), + 'url':reverse('workout_video_view_mini',kwargs={'id':encoder.encode_hex(analysis.id)}), 'name': 'Video Analysis' }