{% extends "base.html" %} {% block title %}Manage Subusers{% endblock %} {% block content %}
Manage Subusers

Adding a subuser allows you to provide additional people access to different aspects of the panel to control your server. You can fine-tune their access to different functions, as well as revoke permissions down the road without ever having to risk giving out your personal account informtion.

To begin, click the button above and select which features you a user to be able to access. Then, enter their email when prompted and an email invite will be sent to them.

{% if flash.info is defined %} {{ flash.info.0|raw }} {% endif %}
{% for user in users %}

{{ user.email }} {% if user.username == null %}Pending{% endif %}

Permission Nodes: {{ user.user_permissions }}

{% endfor %}
{% endblock %}