{% extends "layouts/dashboard.html" %} {% load ui_tags %} {% block breadcrumbs %} {% url 'core:dashboard' as dashboard_url %} {% url 'rims_scholarships:my_scholarships' as my_scholarships_url %} {% url 'rims_scholarships:my_scholarship_detail' scholar.pk as my_scholarship_detail_url %} {% crumb_trail "Dashboard" dashboard_url "My scholarships" my_scholarships_url scholar.scholarship.name|truncatechars:30 my_scholarship_detail_url "Submit progress report" "" as breadcrumbs %} {% include "components/breadcrumbs.html" %} {% endblock %} {% block content %} {% include "components/page_header.html" with title="Submit progress report" subtitle=scholar.scholarship.name eyebrow="Scholar self-service" %}
{% csrf_token %} {% include "components/forms/non_field_errors.html" with form=form %}

Report

Report details

{% include "components/form_field.html" with field=form.period_label required=1 hint="A short label like '2026-Q1', 'Semester 1', or 'Year 1 Mid-term'. Each period can only be reported once." %}
{% include "components/form_field.html" with field=form.file required=1 hint="PDF or document up to 25 MB." %}
{% include "components/form_field.html" with field=form.notes hint="Optional context the document doesn't already cover." %}
{% url 'rims_scholarships:my_scholarship_detail' scholar.pk as cancel_url %} {% include "components/form_actions.html" with cancel_url=cancel_url submit_label="Submit report" %}
{% endblock %}