{% extends "forms.html" %} {% load forms %} {% load applications %} {% block title %}Step 3: Applicant{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

3. Applicant

{% csrf_token %} {% if status %}

You are already registered in the system.

{% if application.applicant.position %}{% endif %} {% if application.applicant.telephone %}{% endif %} {% if application.applicant.mobile %}{% endif %} {% if application.applicant.department %}{% endif %} {% if application.applicant.supervisor %}{% endif %} {% if application.applicant.fax %}{% endif %}
Username:{{ application.applicant.username }}
Short name:{{ application.applicant.get_short_name }}
Full name:{{ application.applicant.get_full_name }}
Institute:{% if application.applicant.institute %}{{ application.applicant.institute }}{% else %}None{% endif %}
Position:{{ application.applicant.position }}
Phone:{{ application.applicant.telephone }}
Mobile:{{ application.applicant.mobile }}
Department:{{ application.applicant.department }}
Supervisor:{{ application.applicant.supervisor }}
Fax:{{ application.applicant.fax }}
{% else %}

Any changes to the following will affect all you applications. You currently have the following applications open.

    {% for app in application.application.applications %} {% if app == application %}
  1. {{ app }} (this application)
  2. {% else %}
  3. {{ app }}
  4. {% endif %} {% endfor %}
{% if form.errors or form.non_field_errors %}

Please correct the error(s) below.

{% endif %} {% if application.header_message %}{{ application.header_message|linebreaks }}{% endif %}

Account Details

This username will be used for your computer account as well as access to this website.

{% form_as_div form %} {% endif %} {% application_actions %}
{% endblock %}