{% extends 'base.html' %} {% block header %}

{% block title %}configure user role in '{{forum.name}}'{% endblock %}

{% endblock %} {% block content %}

each user has a role in the forum. here, a user may be assigned a role in the forum. otherwise, the user's role is the same as the parent forum. everyone's role is "other" by default.

{% if not is_bureaucrat(forum.id, g.user) %}

you are only allowed to approve members in this forum.

{% endif %}
{% if invalid_user %}

requested user does not exist.

cancel

{% elif user %}

{{user}}'s role in this forum is "{{role}}"

{% if role == "other" or is_bureaucrat(forum.id, g.user) %} {% else %}

you do not have permission to change the role of this user

{% endif %}

confirm changes?

cancel

{% else %}

cancel

{% endif %} {% endblock %}