{% extends "layouts/dashboard.html" %} {% load ui_tags %} {% block extra_head %} {% endblock %} {% block breadcrumbs %} {% url 'core:dashboard' as dashboard_url %} {% url 'rims_scholarships:scholarship_list' as scholarship_list_url %} {% crumb_trail "Dashboard" dashboard_url "Programmes" scholarship_list_url "New programme" "" as breadcrumbs %} {% include "components/breadcrumbs.html" %} {% endblock %} {% block content %} {% include "components/page_header.html" with title="New scholarship programme" subtitle="Create a funding programme to enrol scholars into." eyebrow="Scholarship administration" %}
{% csrf_token %} {% include "components/forms/non_field_errors.html" with form=form %}

Programme

Programme details

{% include "components/form_field.html" with field=form.name required=1 %}

Describe eligibility, scope, and objectives of this programme.

{% if form.description.errors %}

{{ form.description.errors.0 }}

{% endif %}
{% include "components/form_field.html" with field=form.grant_call hint="Optional — link this programme to an existing grant call." %}
{% include "components/form_field.html" with field=form.partner hint="Optional — operations partner sponsoring this programme." %}
{% include "components/form_checkbox.html" with field=form.is_active label="Active" hint="Inactive programmes won't appear in enrolment dropdowns." %}
{% url 'rims_scholarships:scholarship_list' as cancel_url %} {% include "components/form_actions.html" with cancel_url=cancel_url submit_label="Create programme" %}
{% endblock %} {% block extra_js %} {% endblock %}