{% extends "base.html" %} {% load static %} {% block title %}Patient Registration - {{ block.super }}{% endblock %} {% block content %}

Patient Registration

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
Personal Information
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
{{ form.middle_name }} {% if form.middle_name.errors %}
{{ form.middle_name.errors.0 }}
{% endif %}
{{ form.preferred_name }} {% if form.preferred_name.errors %}
{{ form.preferred_name.errors.0 }}
{% endif %}
{{ form.suffix }} {% if form.suffix.errors %}
{{ form.suffix.errors.0 }}
{% endif %}
{{ form.id_number }} {% if form.id_number.errors %}
{{ form.id_number.errors.0 }}
{% endif %}
{{ form.date_of_birth }} {% if form.date_of_birth.errors %}
{{ form.date_of_birth.errors.0 }}
{% endif %}
{{ form.gender }} {% if form.gender.errors %}
{{ form.gender.errors.0 }}
{% endif %}
{{ form.marital_status }} {% if form.marital_status.errors %}
{{ form.marital_status.errors.0 }}
{% endif %}
Contact Information
{{ form.phone_number }} {% if form.phone_number.errors %}
{{ form.phone_number.errors.0 }}
{% endif %}
{{ form.mobile_number }} {% if form.mobile_number.errors %}
{{ form.mobile_number.errors.0 }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
Address
{{ form.address_line_1 }} {% if form.address_line_1.errors %}
{{ form.address_line_1.errors.0 }}
{% endif %}
{{ form.address_line_2 }} {% if form.address_line_2.errors %}
{{ form.address_line_2.errors.0 }}
{% endif %}
{{ form.city }} {% if form.city.errors %}
{{ form.city.errors.0 }}
{% endif %}
{{ form.state }} {% if form.state.errors %}
{{ form.state.errors.0 }}
{% endif %}
{{ form.zip_code }} {% if form.zip_code.errors %}
{{ form.zip_code.errors.0 }}
{% endif %}
{{ form.country }} {% if form.country.errors %}
{{ form.country.errors.0 }}
{% endif %}
Other
{{ form.occupation }} {% if form.occupation.errors %}
{{ form.occupation.errors.0 }}
{% endif %}
{{ form.is_active }} {% if form.is_active.errors %}
{{ form.is_active.errors.0 }}
{% endif %}
Cancel
{% endblock %} {% block js %}{% endblock %}