{% import "Juice/macros/html.html" as html with context %} {% import "Juice/macros/forms.html" as forms with context %} {% import "Juice/macros/widget.html" as widget with context %} {% if user.is_deleted %} {{ widget.alert("This user account is DELETED", "danger", false) }} {% elif not user.active %} {{ widget.alert("This user account is DEACTIVATED", "warning", false) }} {% endif %} {% call widget.panel("Info") %}
ID | {{ user.id }} |
First Name | {{ user.first_name | default("", true)}} |
Last Name | {{ user.last_name | default("", true) }} |
{{ user.email }} | |
Signup Method | {{ user.signup_method }} |
Last Login | {{ user.last_login }} |
Signup Date | {{ user.created_at }} |
Roles | {{ user.role.name | capitalize}} |
Is Active | {{ user.active | bool_to_yes }} |
Is Deleted | {{ user.is_deleted | bool_to_yes }} |