{% extends 'base.html' %} {% block content %}

Manage Accounts

{% if clubs %} {% for club in clubs %}
{{ club.name }}

Account: {{ club.account.id }}

{% if club.account %} Update Account Delete Account {% endif %}

Club Representative: {{ club.representative.username }}

Update Representative Update Club Delete Club {% if not club.account %} Create Account {% endif %} Generate Statement View Monthly Statements
{% endfor %} {% else %}

No clubs to display.

{% endif %} Create Club
{% endblock %}