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

Manage facilitators

{% for f in facilitators %} {% endfor %}
Name Email (login) Phone Job title Thematic areas Status Actions
{{ f.user.full_name }} {{ f.user.email }} {{ f.user.phone or '—' }} {{ f.user.job_title or '—' }} {{ f.area_labels }}
{% if f.user.is_active %} Active {% else %} Inactive {% endif %} {% if f.user.must_change_password %}pwd reset{% endif %} {% if f.user.is_active %}
{% else %}
{% endif %}

Register new facilitator

* Required field

Initial password: {{ default_password }}

Back to admin

{% endblock %}