a few more organisation edits

This commit is contained in:
stvnrlly
2023-01-05 21:33:15 -05:00
parent b00fea05bc
commit 59d4f09d01
19 changed files with 53 additions and 53 deletions

View File

@@ -4,13 +4,13 @@
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
New organisation
New organization
{% endblock %}
{% block main %}
<div class="govuk-width-container">
<div class="navigation-service">
<a href="{{ url_for('.organisations') }}" class="govuk-link govuk-link--no-visited-state navigation-service-back-to">All organisations</a>
<a href="{{ url_for('.organisations') }}" class="govuk-link govuk-link--no-visited-state navigation-service-back-to">All organizations</a>
<a href="{{ url_for('main.choose_account') }}" class="govuk-link govuk-link--no-visited-state navigation-service-switch">Switch service</a>
</div>
@@ -22,7 +22,7 @@
<main class="govuk-main-wrapper column-main govuk-!-padding-top-0 govuk-!-padding-bottom-0" id="main-content" role="main" >
{% block beforeContent %}{% endblock %}
{% block content %}
{{ page_header('New organisation') }}
{{ page_header('New organization') }}
{% call form_wrapper() %}
{{ form.name }}
{{ form.organisation_type }}

View File

@@ -3,12 +3,12 @@
{% from "components/uk_components/button/macro.njk" import govukButton %}
{% block per_page_title %}
Organisations
Organizations
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-medium">Organisations</h1>
<h1 class="heading-medium">Organizations</h1>
{{ live_search(target_selector='.browse-list-item', show=True, form=search_form, label='Search by name') }}

View File

@@ -5,7 +5,7 @@
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
{% block org_page_title %}
Crown organisation
Crown organization
{% endblock %}
{% block backLink %}
@@ -13,7 +13,7 @@
{% endblock %}
{% block maincolumn_content %}
{{ page_header("Crown organisation") }}
{{ page_header("Crown organization") }}
<div class="govuk-grid-row">
<div class="govuk-grid-column-five-sixths">
{% call form_wrapper() %}

View File

@@ -5,7 +5,7 @@
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
{% block org_page_title %}
Change organisation name
Change organization name
{% endblock %}
{% block backLink %}
@@ -14,7 +14,7 @@
{% block maincolumn_content %}
{{ page_header('Change organisation name') }}
{{ page_header('Change organization name') }}
{% call form_wrapper() %}
{{ form.name }}

View File

@@ -5,7 +5,7 @@
{% from "components/uk_components/back-link/macro.njk" import govukBackLink %}
{% block org_page_title %}
Organisation sector
Organization sector
{% endblock %}
{% block backLink %}
@@ -13,7 +13,7 @@
{% endblock %}
{% block maincolumn_content %}
{{ page_header("Organisation sector") }}
{{ page_header("Organization sector") }}
{% call form_wrapper() %}
{{ form.organisation_type }}
{{ page_footer('Save') }}

View File

@@ -20,7 +20,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_name', org_id=current_org.id),
suffix='organisation name'
suffix='organization name'
)
}}
{% endcall %}
@@ -30,12 +30,12 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_type', org_id=current_org.id),
suffix='sector for the organisation'
suffix='sector for the organization'
)
}}
{% endcall %}
{% call row() %}
{{ text_field('Crown organisation') }}
{{ text_field('Crown organization') }}
{{ optional_text_field(
{
True: 'Yes',
@@ -46,7 +46,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_crown_status', org_id=current_org.id),
suffix='organisation crown status'
suffix='organization crown status'
)
}}
{% endcall %}
@@ -62,7 +62,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_agreement', org_id=current_org.id),
suffix='data sharing and financial agreement for the organisation'
suffix='data sharing and financial agreement for the organization'
)
}}
{% endcall %}
@@ -72,7 +72,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_go_live_notes', org_id=current_org.id),
suffix='go live notes for the organisation'
suffix='go live notes for the organization'
)
}}
{% endcall %}
@@ -83,7 +83,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_billing_details', org_id=current_org.id),
suffix='billing details for the organisation'
suffix='billing details for the organization'
)
}}
{% endcall %}
@@ -94,7 +94,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_notes', org_id=current_org.id),
suffix='the notes for the organisation'
suffix='the notes for the organization'
)
}}
{% endcall %}
@@ -105,7 +105,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_email_branding', org_id=current_org.id),
suffix='default email branding for the organisation'
suffix='default email branding for the organization'
)
}}
{% endcall %}
@@ -115,7 +115,7 @@
{{ edit_field(
'Change',
url_for('.edit_organisation_domains', org_id=current_org.id),
suffix='known email domains for the organisation'
suffix='known email domains for the organization'
)
}}
{% endcall %}