{% extends "layouts/base.html" %}
{% load i18n %}
{% block title %}{% trans "Staff Management" %} - PX360{% endblock %}
{% block content %}
{% trans "Manage hospital staff and their user accounts" %}{% trans "Staff Management" %}
| {% trans "Name" %} | {% trans "Type" %} | {% trans "Job Title" %} | {% trans "Department" %} | {% trans "Manager" %} | {% trans "User Account" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|
|
{{ staff_member.first_name|first }}{{ staff_member.last_name|first }}
{{ staff_member.get_full_name }}
{% if staff_member.license_number %}
{{ staff_member.license_number }}
{% endif %}
|
{{ staff_member.get_staff_type_display }} | {{ staff_member.job_title|default:"-" }} | {% if staff_member.department %} {{ staff_member.department.name }} {% else %} - {% endif %} | {% if staff_member.report_to %} {{ staff_member.report_to.get_full_name }} {% else %} - {% endif %} | {% if staff_member.user %} {% trans "Linked" %} {% else %} {% trans "None" %} {% endif %} | {% if staff_member.status == 'active' %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} | |
|
{% trans "No staff members found" %} |
|||||||
{% trans "Create a user account for" %} ?
{% trans "Credentials will be emailed to the staff member." %}
{% trans "Send invitation email to" %} ?
{% trans "A new password will be generated and emailed." %}