{% extends 'base.html' %} {% load static %} {% block title %}{{ title }} - Rapha-Bethel BNPS{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ title }}

Back to List
{% csrf_token %} {% if user_form %}
User Account (Login Details)
⚠️ Important — Name Format:
Enter the given name only in First Name (e.g. Annie, not Mme Annie).
Set the honorific (Mr / Mme / Dr …) in the Title field in the Staff Profile below.
{{ user_form.first_name }} {% if user_form.first_name.help_text %}
{{ user_form.first_name.help_text }}
{% endif %} {{ user_form.first_name.errors }}
{{ user_form.last_name }} {{ user_form.last_name.errors }}
{{ user_form.username }}
{{ user_form.username.help_text }}
{{ user_form.username.errors }}
{{ user_form.email }} {{ user_form.email.errors }}
{{ user_form.password }}
{{ user_form.password.help_text }}
{{ user_form.password.errors }}
{{ user_form.confirm_password }} {{ user_form.confirm_password.errors }}
{% endif %}
Staff Profile

Personal Information

{{ form.title }} {{ form.title.errors }}
{{ form.gender }} {{ form.gender.errors }}
{{ form.date_of_birth }} {{ form.date_of_birth.errors }}
{{ form.marital_status }} {{ form.marital_status.errors }}
{{ form.nationality }} {{ form.nationality.errors }}

Contact Information

{{ form.phone_country_code }} {{ form.phone_number }}
{{ form.phone_number.errors }}
{{ form.alt_phone_country_code }} {{ form.alternate_phone }}
{{ form.alternate_phone.errors }}
{{ form.city }} {{ form.city.errors }}
{{ form.quarter }} {{ form.quarter.errors }}
{{ form.address }} {{ form.address.errors }}

Emergency Contact

{{ form.emergency_contact_name }} {{ form.emergency_contact_name.errors }}
{{ form.emergency_phone_country_code }} {{ form.emergency_contact_phone }}
{{ form.emergency_contact_phone.errors }}
{{ form.emergency_contact_relationship }} {{ form.emergency_contact_relationship.errors }}

Employment Details

{{ form.role }} {{ form.role.errors }}
{{ form.department }} {{ form.department.errors }}
{{ form.employment_status }} {{ form.employment_status.errors }}
{{ form.hire_date }} {{ form.hire_date.errors }}
{{ form.contract_end_date }} {{ form.contract_end_date.errors }}
{{ form.years_of_experience }} {{ form.years_of_experience.errors }}
{{ form.specialization }} {{ form.specialization.errors }}
{{ form.subjects_taught }} {{ form.subjects_taught.errors }}
{{ form.is_class_teacher }}
{{ form.homeroom_class }} {{ form.homeroom_class.errors }}
{{ form.qualifications }} {{ form.qualifications.errors }}

Bank Information

{{ form.bank_name }} {{ form.bank_name.errors }}
{{ form.bank_branch }} {{ form.bank_branch.errors }}

Documents & Photo

{{ form.photo }} {{ form.photo.errors }}
{{ form.cv_file }} {{ form.cv_file.errors }}
{{ form.contract_file }} {{ form.contract_file.errors }}
{{ form.id_document }} {{ form.id_document.errors }}
{{ form.diplomas }} {{ form.diplomas.errors }}

Other

{{ form.notes }} {{ form.notes.errors }}
{{ form.is_active }}
Cancel
{% endblock %} {% block extra_js %} {% endblock %}