{% extends "base.html" %} {% block title %}Users - FC CI{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block content %}| Username | Role | Type | Enabled | Last Login | {% if is_admin %}Actions | {% endif %}|
|---|---|---|---|---|---|---|
| {{ u.username }} | {{ u.email }} | {{ u.role }} | {{ u.user_type }} | {% if u.enabled %}Yes{% else %}No{% endif %} | {{ u.last_login_at }} | {% if is_admin %}{% endif %} |