{% extends "base.html" %} {% block content %}

User Management

Add New User
{% for user in users %} {% endfor %}
Username Permissions Actions
{{ user.username }} {% if user.is_admin %} Admin {% elif user.can_add_recipes %} Recipe Manager {% else %} Viewer {% endif %} {% if not user.is_admin %} Edit
{% endif %}
{% endblock %}