{% extends "core/base.html" %} {% block title %}Edit Assistant - Inventory Management System{% endblock %} {% block page_title %}Edit Assistant{% endblock %} {% load custom_filters %} {% block header_actions %} Back to List {% endblock %} {% block content %}
Edit Assistant: {% if assistant.user %} {{ assistant.user.get_full_name|default:assistant.user.username }} {% else %} {{ assistant.invited_email }} {% endif %}
{% csrf_token %}
{% if assistant.user %}
{{ assistant.user.get_full_name|default:assistant.user.username|first|upper }}
{% else %}
{% endif %}
{% if assistant.user %} {{ assistant.user.get_full_name|default:assistant.user.username }} {% else %} {{ assistant.invited_email }} {% endif %}

{% if assistant.user %} {{ assistant.user.email }} {% else %} {{ assistant.invited_email }} Pending Registration {% endif %}

Status: {% if assistant.is_active %} {% if assistant.invitation_accepted_at %} Active {% else %} Pending {% endif %} {% else %} Inactive {% endif %}

Joined: {% if assistant.invitation_accepted_at %} {{ assistant.invitation_accepted_at|date:"M d, Y" }} {% else %} Invited {{ assistant.invitation_sent_at|date:"M d, Y" }} {% endif %}

{% for value, label in role_choices %}
{% endfor %}
When inactive, the user cannot access the system.
{% if assistant.user and assistant.user != request.user %}
Danger Zone

Removing this assistant will revoke all their access immediately.

{% endif %}
{% endblock %}