2019-07-02 09:49:00 +01:00
|
|
|
{% extends "withoutnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2018-02-08 12:19:21 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2018-02-08 12:19:21 +00:00
|
|
|
|
2018-02-08 15:41:31 +00:00
|
|
|
{% block per_page_title %}
|
2023-01-05 21:33:15 -05:00
|
|
|
New organization
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2019-10-11 16:44:17 +01:00
|
|
|
{% block main %}
|
|
|
|
|
<div class="govuk-width-container">
|
2023-08-08 16:19:17 -04:00
|
|
|
<div class="navigation-service usa-breadcrumb">
|
|
|
|
|
<a href="{{ url_for('.organizations') }}" class="usa-link navigation-service usa-breadcrumb__link usa-breadcrumb-back-to">All organizations</a>
|
|
|
|
|
<a href="{{ url_for('main.choose_account') }}" class="usa-link navigation-service usa-breadcrumb-switch">Switch service</a>
|
2019-07-02 09:49:00 +01:00
|
|
|
</div>
|
2018-02-08 12:19:21 +00:00
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-3">
|
2019-10-11 16:44:17 +01:00
|
|
|
|
2019-07-02 09:49:00 +01:00
|
|
|
</div>
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-col-9">
|
2023-08-25 11:38:07 -04:00
|
|
|
<main class="govuk-main-wrapper column-main" id="main-content" role="main" >
|
2019-10-11 16:44:17 +01:00
|
|
|
{% block beforeContent %}{% endblock %}
|
|
|
|
|
{% block content %}
|
2023-01-05 21:33:15 -05:00
|
|
|
{{ page_header('New organization') }}
|
2019-10-11 16:44:17 +01:00
|
|
|
{% call form_wrapper() %}
|
2020-08-04 16:32:40 +01:00
|
|
|
{{ form.name }}
|
2023-07-12 12:09:44 -04:00
|
|
|
{{ form.organization_type }}
|
2019-10-11 16:44:17 +01:00
|
|
|
{{ page_footer('Save') }}
|
|
|
|
|
{% endcall %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2019-07-02 09:49:00 +01:00
|
|
|
</div>
|
2018-02-12 09:26:13 +00:00
|
|
|
|
2018-02-08 12:19:21 +00:00
|
|
|
{% endblock %}
|