{% extends "base.html" %} {% block title %}{{ action }} User - SEREACT Web Client{% endblock %} {% block content %}
{{ action }} User
{% if action == 'Create' %}
Leave empty to assign to current user's team
{% endif %}
Administrators have full access to all system features
{% if user %}
ID: {{ user.id }}
Team ID: {{ user.team_id }}
Created: {{ user.created_at.strftime('%Y-%m-%d %H:%M') if user.created_at else 'Unknown' }}
{{ 'Active' if user.is_active else 'Inactive' }}
{% endif %}
Back to Users
{% if action == 'Edit' %}
Danger Zone

Deleting a user is permanent and cannot be undone. All user data and associated content will be affected.

{% endif %}
{% endblock %} {% block scripts %} {% if action == 'Edit' %} {% endif %} {% endblock %}