{% import "WebPortfolio/macros/base.html" as m with context %} {% import "WebPortfolio/macros/forms.html" as f with context %} {% extends "WebPortfolio/Package/User/Admin/_layout.html" %} {% block admin_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 %}

INFO

ID {{ user.id }}
First Name {{ user.first_name | default("", true)}}
Last Name {{ user.last_name | default("", true) }}
Email {{ 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 }}
{% endblock %}