Actions
{% csrf_token %}
Log In
Log in as any user
Toggle Groups
{% for value, name in form.fields.toggle_group.choices %}
{% if value %}{{ name }}{% endif %}
{% endfor %}
Add or remove groups for the logged in user
Production Actions
SSO Log in
Log out
These actions are used in production
{% for table_name, table_contents in tables %}
{{ table_name }}
{% for k, v in table_contents.items %}
{{ k }}
{{ v }}
{% empty %}
(empty)
{% endfor %}
{% endfor %}