mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 12:49:48 -04:00
Add page to change organisation type
If a user picks the wrong thing, we should be able to override it when they go live.
This commit is contained in:
@@ -193,7 +193,7 @@
|
||||
{{ optional_text_field(
|
||||
(current_service.organisation_type or '')|title
|
||||
) }}
|
||||
{{ text_field() }}
|
||||
{{ edit_field('Change', url_for('.set_organisation_type', service_id=current_service.id)) }}
|
||||
{% endcall %}
|
||||
{% call row() %}
|
||||
{{ text_field('Free text message allowance')}}
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{% extends "withnav_template.html" %}
|
||||
{% from "components/radios.html" import radios, branding_radios %}
|
||||
{% from "components/page-footer.html" import page_footer %}
|
||||
|
||||
{% block service_page_title %}
|
||||
Set branding and organisation
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<h1 class="heading-large">Set organisation type</h1>
|
||||
<form method="post">
|
||||
{{ radios(form.organisation_type) }}
|
||||
{{ page_footer(
|
||||
'Save',
|
||||
back_link=url_for('.service_settings', service_id=current_service.id),
|
||||
back_link_text='Back to settings'
|
||||
) }}
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user