{% extends 'admin_panel/base.html' %} {% block title %}{{ action }} User{% endblock %} {% block page_title %}{{ action }} User{% endblock %} {% block content %}
{{ action }} User
{% csrf_token %} {% if action == 'Create' %}
{% else %}
Username cannot be changed.
{% endif %}

Permissions


House Access

Select which houses this user can view. Staff and superusers automatically see all houses.

{% if all_houses %}
{% for house in all_houses %}
{% endfor %}
{% else %}

No houses available yet.

{% endif %}
Cancel
{% endblock %}