{% extends "base.html" %} {% block content %} {% if notice %}
{{ notice }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
{% for row in rows %} {% endfor %}
Role Flags Actions
{{ row.name }} {% for flag in row.flags %} {{ flag }} {% endfor %} {% for action in row.actions %} {{ action }} {% endfor %} {# Only custom roles can be dropped — dropRole on a built-in is refused by the server, so offering the button would be a button that always fails. #} {% if "custom" in row.flags %}
{% endif %}
{% endblock %}