{% extends 'base.html' %} {% block title %}Upload Documents for {{ job.job_title }}{% endblock %} {% block content %}

Upload Documents for {{ job.job_title }}

{% csrf_token %} {{ form.as_p }}
Uploaded Documents
{% for doc in documents %} {% empty %} {% endfor %}
Document Type File Notes Uploaded At Actions
{{ doc.get_document_type_display }} {% if doc.document %} {{ doc.document.name|cut:"job_documents/" }} {% else %} - {% endif %} {% if doc.document.url %} {% with doc.document.url|lower as doc_url %} {% if doc_url|slice:"-4:" == ".pdf" %} View PDF {% elif doc_url|slice:"-4:" == ".jpg" or doc_url|slice:"-5:" == ".jpeg" or doc_url|slice:"-4:" == ".png" %} View Image {% elif doc_url|slice:"-4:" == ".doc" or doc_url|slice:"-5:" == ".docx" or doc_url|slice:"-4:" == ".xls" or doc_url|slice:"-5:" == ".xlsx" %} View Document {% else %} View File {% endif %} {% endwith %} {% else %} No file {% endif %} {{ doc.notes }} {{ doc.uploaded_at|date:"M d, Y H:i" }} Download
No documents uploaded yet.
{% endblock %}