mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-30 11:00:14 -04:00
So that we can default services to their appropriate text allowance, we need to find out what sector they're in. So let's start collecting that from teams as they create new services. I think Central/Local/NHS are the right options, but these can be easily changed if not.
33 lines
660 B
HTML
33 lines
660 B
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/radios.html" import radios %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block per_page_title %}
|
|
{{ heading }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
|
|
<h1 class="heading-large">
|
|
About your service
|
|
</h1>
|
|
|
|
<form autocomplete="off" method="post">
|
|
|
|
{{ textbox(form.name, hint="You can change this later") }}
|
|
|
|
{{ radios(form.organisation_type) }}
|
|
|
|
{{ page_footer('Add service') }}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|