Files
notifications-admin/app/templates/views/add-service.html
Pea Tyczynska c8ed608c9a Only show nhs radios if user has nhs domain email
Also split local NHS into two groups following designer advice
on readability.
2019-07-18 17:07:42 +01:00

35 lines
809 B
HTML

{% extends "withoutnav_template.html" %}
{% from "components/radios.html" import radios %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
{{ heading }}
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
{{ page_header('About your service') }}
{% call form_wrapper() %}
{{ textbox(form.name, hint="You can change this later") }}
{% if not default_organisation_type %}
{{ radios(form.organisation_type) }}
{% endif %}
{{ page_footer('Add service') }}
{% endcall %}
</div>
</div>
{% endblock %}