{% extends "base.html" %} {% block title %}Users - FC CI{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block content %}

User Management

{% if is_admin %}
Create User
{% endif %} {% if users.is_empty() %}
No users
Create a user above to enable user authentication.
{% else %}
{% if is_admin %}{% endif %} {% for u in users %} {% if is_admin %} {% endif %} {% endfor %}
Username Email Role Type Enabled Last LoginActions
{{ u.username }} {{ u.email }} {{ u.role }} {{ u.user_type }} {% if u.enabled %}Yes{% else %}No{% endif %} {{ u.last_login_at }}
{% endif %} {% endblock %} {% block scripts %} {% if is_admin %} {% endif %} {% endblock %}