{% extends "base.html" %} {% block title %}Users — MartinhalApprovalFlow{% endblock %} {% block content %}

Users

Create accounts and choose which workflows each user can send requests to. Admins can use every workflow.

Add a user

{% for u in users %}
{{ u.username }} {% if u.is_admin %}admin{% endif %} {% if u.email %}{{ u.email }}{% endif %} {% if u.id != session['user_id'] %}
{% endif %}
{% if not u.is_admin %}
{% for w in workflows %} {% else %} No workflows exist yet. {% endfor %} {% if workflows %}{% endif %}
{% endif %}
Reset password
{% endfor %} {% endblock %}