{% import "Pylot/macros/base.html" as m with context %} {% import "Pylot/macros/forms.html" as f with context %} {% extends "Pylot/UserAdmin/_layout.html" %} {% block admin_page_title %}User Info Posts{% endblock %} {% 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 }}
Name {{ user.name }}
Email {{ 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 }}
{% endblock %}