{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block title %}Update Application - {{ application.job.title }}{% endblock %} {% block content %}

Update Application

{{ application.job.title }} at {{ application.job.location }}

{% csrf_token %}
Personal Information (Cannot be modified)

Application Content (You can modify these)
Documents (Upload new files to replace current ones)
{% if application.resume %}
Current: {{ application.resume.name|slice:":30" }}{% if application.resume.name|length > 30 %}...{% endif %}
{% endif %} Leave empty to keep current file
{% if application.ictaz_certificate %}
Current: {{ application.ictaz_certificate.name|slice:":30" }}{% if application.ictaz_certificate.name|length > 30 %}...{% endif %}
{% endif %} Leave empty to keep current file
{% if application.additional_documents %}
Current: {{ application.additional_documents.name|slice:":30" }}{% if application.additional_documents.name|length > 30 %}...{% endif %}
{% endif %} Upload additional documents (NRC, Degree Results, etc.) as a single PDF. Leave empty to keep current file.

Cancel
{% endblock %}