{% import "Pylot/macros/base.html" as m with context %} {% import "Pylot/macros/forms.html" as f with context %} {% extends "Pylot/UserAdmin/layout.html" %} {% block page_title %}User Info{% endblock %} {% block content %} {% if user.is_deleted %} {{ m.alert("This user account is DELETED", "danger") }} {% elif not user.active %} {{ m.alert("This user account is DEACTIVATED", "warning") }} {% endif %}
| ID | {{ user.id }} |
| Name | {{ user.name }} |
| {{ user.email }} | |
| Signup Method | {{ user.signup_method }} |
| Last Login | {{ user.last_login }} |
| Signup Date | {{ user.created_at }} |
| Roles | {{ user_roles_name | join(' / ') }} |
| Is Active | {{ user.active | bool_to_yes }} |
| Is Deleted | {{ user.is_deleted | bool_to_yes }} |