{% 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 }}

Applicant Details

{% if application.content_type.model == 'applicant' %} {% elif application.content_type.model == 'person' %} {% else %} {% endif %} {% 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 %}
Applicant type:New applicant {% if is_admin %}[edit]{% endif %}
Username:{{ application.applicant.username }}
Applicant type:Existing person
Username:{{ application.applicant.username }}
Applicant type:Unknown {{ application.content_type.model }}
Username:{{ application.applicant.username }}
Short name:{{ application.applicant.get_short_name }}
Full name:{{ application.applicant.get_full_name }}
Email:{{ application.applicant.email|urlize }}
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 }}
{% if application.content_type.model == 'applicant' %} {% 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 %}