{% extends base %} {% block content %} {% import "macros/action_icons_static.html" as icons with context %}

{% block title %}Capture Record Uploads{% endblock %}

Manage documents for {{ names }}.
{% if record_qualifications %}

Current Qualifications on Record - for reference

{% endif %}{# end of checking for existing qualification records #}

Upload Documents

Upload Document
{% if document_uploads %}
{% for upload in document_uploads %} {% endfor %}{# end of looping through existing document uploads #}
File NameTypeMatching Qualification>Description[Actions]
{{ icons.view_svg(s_label="view upload") }} {{ upload.v_filename }}{{ upload.si_upload_type }}{{ upload.v_qualification_name }}{{ upload.v_description }}{{ icons.delete_svg(s_label="remove upload") }}
{% endif %}{# end of checking for existing document uploads #}
{% from "macros/dialog.html" import dlg_prep with context %} {{ dlg_prep(["dlg_upload"]) }} {# dlg divs below #}
Upload document
{{ upload_form.csrf_token }}
{{ remove_upload_form.csrf_token }} {{remove_upload_form.hid_remove_upload_id }}
{% endblock %}