{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}{{ workout.name }}{% endblock %} {% block og_title %}{{ workout.name }} {% endblock %} {% block description %}{{ workout.name }} {{ workout.date }} - {{ workout.distance }}m - {{ workout.duration |durationprint:"%H:%M:%S.%f" }}{% endblock %} {% block og_description %}{{ workout.name }} {{ workout.date }} - {{ workout.distance }}m - {{ workout.duration |durationprint:"%H:%M:%S.%f" }}{% endblock %} {% block og_image %} {% endblock %} {% block content %}

{{ workout.name }}

 

{% if user.is_authenticated and user == rower.user %}

Edit Workout

{% else %}

See Workout

{% endif %}
{% if user.is_authenticated and user == rower.user %}

Workflow View

{% else %}

 

{% endif %}
{% if user.is_authenticated and user == rower.user %}

Delete Chart

{% else %}

 

{% endif %}

/{{ graph.filename }}

{% endblock %}