{% extends "base_generic.html" %} {% block header %} {% if user.is_authenticated and user.is_superuser %}
Back
Exercises {% else %}

You are not logged in: login

{% endif %} {% endblock %} {% block body %} {% if user.is_authenticated and user.is_superuser %}

Create an Exercise

{% for exercise in exercises %}

{{ exercise.name }}

{% endfor %}
{% endif %} {% endblock %}