Files
notifications-admin/app/templates/views/add-service.html
Chris Hill-Scott 9453f301d2 Collect organisation type
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.
2017-10-23 17:45:01 +01:00

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 %}