{% extends "base.html" %} {% load staticfiles %} {% load rowerfilters %} {% block title %}Rowsandall Histogram {% endblock %} {% block content %} {{ interactiveplot |safe }}
{% if theuser %}

{{ theuser.first_name }}'s Stroke Analysis

{% else %}

{{ user.first_name }}'s Stroke Analysis

{% endif %}
{% if user.is_authenticated and user|is_manager %}

Warning: Large date ranges may take a long time to load. Huge date ranges may crash your browser.

{% csrf_token %}
{{ optionsform.as_table }}

Use this form to select a different date range:

Select start and end date for a date range:

{{ form.as_table }}
{% csrf_token %}
Or use the last {{ deltaform }} days.
{% csrf_token %}

Summary for {{ theuser.first_name }} {{ theuser.last_name }} between {{ startdate|date }} and {{ enddate|date }}

{{ the_div|safe }}
{% endblock %}