{% extends "base.html" %} {% block title %}Account Lookup{% endblock %} {% block content %}

Account Lookup

{% if msg_type %}

{{msg}}

{% endif %} {% if group %}
Group {{group}}
Status {{group.group_status}}
Account number {{account_number}}
Username {{username}}
Roles
    {% for holder in office_holders %}
  • {{holder.role}}
  • {% empty %}
  • No (public) roles
  • {% endfor %}
{% endif %} {% if account_number %}

You may be able to find information about account {{account_number}} in Roles.

{% endif %} {{ form.as_table }}

Group Status

Status Description
Active Active groups are normal ASA groups in good standing.
Suspended and Derecognized Suspended and derecognized groups are not in good standing, and should generally not be permitted to spend money, reserve rooms, etc..
Non-Group Entity Non-Group Entities do not necessarily have any ASA recognition, but are included in the ASA Database as a courtesy to other MIT offices. You may assume the roles listed are authoritative. However, the ASA does not grant them any privileges.

Available Roles

The following roles will be listed if the user has them:

{% for role in visible_roles %} {% endfor %}
Role Description
{{role.display_name}} {{role.description}}
{% endblock %}