{% extends "base_template.html" %} {% block title %}Roles{% endblock %} {% block content %}

Roles

Sections that group team members.

← Back to team
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %}
New role
Existing roles
{% if roles %}
{% for r in roles %} {% endfor %}
Name Order Actions
{% else %}
No roles yet. Create the first one above.
{% endif %}
{% endblock %}