mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 17:58:25 -04:00
Changes OrganisationCrownStatusForm.crown_status. This also effects NewOrganisationForm, which inherits from OrganisationCrownStatusForm. Because of that this commit also updates the template used for the edit org crown status page, which uses NewOrganisationForm for its form.
25 lines
659 B
HTML
25 lines
659 B
HTML
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% extends "org_template.html" %}
|
|
|
|
{% block org_page_title %}
|
|
Crown organisation
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
{{ page_header(
|
|
"Crown organisation",
|
|
back_link=url_for('.organisation_settings', org_id=current_org.id)
|
|
) }}
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-five-sixths">
|
|
{% call form_wrapper() %}
|
|
{{ form.crown_status }}
|
|
{{ page_footer('Save') }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|