{% extends "base.html" %} {% block extrahead %} {% endblock %} {% block title %}Membership update{% endblock %} {% block content %}

Membership update

{% if message %}

{{message}}

{% endif %}

The ASA is attempting to verify that all currently recognized groups are active and have at least five student members.

We ask you to help with that process by indicating what groups you consider yourself a member of.

Groups you currently say you're a member of:

{% if member_groups %} {% for group in member_groups %} {% endfor %}
Group
{{group}}
{% csrf_token %}
{% else %}

You are not currently indicating membership in any groups.

{% endif %}

Option 1: Add or remove groups that list a role for you

{% for group, roles in role_groups.values %} {% endfor %}
Group Roles Add/Remove
{{group}} {{roles|join:", "}}
{% csrf_token %} {% if group in member_groups %} {% else %} {% endif %}

Option 2: Select all your groups at once

Below, you can add or remove any recognized group from the list of groups you are a member of.

{% csrf_token %} {{ form.as_table }}
{% endblock %}