{% extends "base.html" %} {% block title %}{{group.name}}: Update people{% endblock %} {% block content %}

{{group.name}}: Update people

{% include "groups/group_tools.part.html" %}

Please adjust the people associated with your group below.

Available roles

{% for role in roles %} {% endfor %}
Role Description Maximum allowed Requires student?
{{role.display_name}} {{role.description}} {{role.max_count_str}} {% if role.require_student %}Yes{%else%}No{%endif%}
{% if msgs %}

Messages

{%endif%} {% if changes %}

Changes made

{% for verb, color, person, role in changes %} {% endfor %}
Action Person Role
{{verb}}{{person}}{{role.display_name}}
{% endif %}

Option 1: View and update people one at a time

Please note:

{% csrf_token %} {% for role in roles %} {% endfor %} {%for specify_name, person, formatted_name, role_list in officers %} {%for role,val in role_list%} {%endfor%} {%endfor%}
{{role.display_name}}
{% if specify_name %} {% else %} {{formatted_name}} {% endif %}
{%if edited %}

Untouched were {{kept}} filled people/role combinations and {{kept_not}} unfilled combinations.

{% endif %}

Option 2: Bulk update

{% csrf_token %} {{ bulk_form.as_table }}
{% endblock %}