{% extends "main.html" %} {% load karaage_tags %} {% load applications %} {% load render_table from django_tables2 %} {% block title %}Application{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Application Details

{{ application.applicant }} has requested to {{ application.info }}

Current Status

Application process:

{% application_state application %} {% if 'approve' in actions %}

As you are {{ authorised_text }}, please Approve or Decline this request.

{% endif %} {% if 'approve' in actions or is_admin %}
    {% if 'approve' in actions %}
  • Approve
  • Decline
  • {% endif %} {% if is_admin %}
  • Logs
  • {% endif %}
{% endif %}

Application Details

{% if is_admin %} {% endif %}
Secret Token:{{ application.secret_token }}
Expires:{{ application.expires }}
Created by:{{ application.created_by }}
Created date:{{ application.created_date }}
Submitted date:{{ application.submitted_date }}
Complete date:{{ application.complete_date }}
{% if application.new_applicant %} {% with applicant=application.new_applicant %}

Requested Applicant Details

{% if applicant.position %}{% endif %} {% if applicant.telephone %}{% endif %} {% if applicant.mobile %}{% endif %} {% if applicant.department %}{% endif %} {% if applicant.supervisor %}{% endif %} {% if applicant.fax %}{% endif %}
Applicant type:New applicant {% if is_admin and not application.existing_person %}[edit]{% endif %}
Username:{{ applicant.username }}
Short name:{{ applicant.get_short_name }}
Full name:{{ applicant.get_full_name }}
Email:{{ applicant.email|urlize }}
Institute:{% if applicant.institute %}{{ applicant.institute }}{% else %}None{% endif %}
Position:{{ applicant.position }}
Phone:{{ applicant.telephone }}
Mobile:{{ applicant.mobile }}
Department:{{ applicant.department }}
Supervisor:{{ applicant.supervisor }}
Fax:{{ applicant.fax }}
{% endwith %} {% endif %} {% if application.existing_person %} {% with applicant=application.existing_person %}

Current Applicant Details

{% if applicant.position %}{% endif %} {% if applicant.telephone %}{% endif %} {% if applicant.mobile %}{% endif %} {% if applicant.department %}{% endif %} {% if applicant.supervisor %}{% endif %} {% if applicant.fax %}{% endif %}
Applicant type:Existing person [view]
Username:{{ applicant.username }}
Short name:{{ applicant.get_short_name }}
Full name:{{ applicant.get_full_name }}
Email:{{ applicant.email|urlize }}
Institute:{% if applicant.institute %}{{ applicant.institute }}{% else %}None{% endif %}
Position:{{ applicant.position }}
Phone:{{ applicant.telephone }}
Mobile:{{ applicant.mobile }}
Department:{{ applicant.department }}
Supervisor:{{ applicant.supervisor }}
Fax:{{ applicant.fax }}
{% endwith %} {% endif %} {% if not application.existing_person %} {% if 'duplicate' in actions %}

Similar People

{% csrf_token %}

Please check that the applicant isn't an existing user.

{% get_similar_people_table application.applicant as table %} {% render_table table %}
{% endif %} {% endif %} {% application_request application %} {% if is_admin %}

Comments

{% comments application.application_ptr %} {% if is_admin %} {% endif %}
{% endif %}
{% csrf_token %} {% application_actions %}
{% endblock %}