{% import "bootstrap/utils.html" as utils %} {% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block body %}

{{ utils.flashed_messages() }}

{{ title }}

{% if positions %}
{% for position in positions %} {% endfor %}
Name Description Sport Edit Delete
{{ position.name }} {{ position.description }} {{ position.sport.name }} Edit Delete
{% else %}

No positions have been added.


{% endif %} Add Position
{% endblock %}