Files
notifications-admin/app/templates/views/add-service.html
T

35 lines
809 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
2017-10-04 11:49:32 +01:00
{% from "components/radios.html" import radios %}
2016-01-11 13:15:10 +00:00
{% from "components/textbox.html" import textbox %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
2016-01-18 10:47:53 +00:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
{{ heading }}
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
2016-01-18 10:47:53 +00:00
<div class="column-two-thirds">
2015-12-15 08:20:25 +00:00
2019-04-29 11:44:05 +01:00
{{ page_header('About your service') }}
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2016-02-04 12:20:24 +00:00
{{ textbox(form.name, hint="You can change this later") }}
{% if not default_organisation_type %}
{{ radios(form.organisation_type) }}
{% endif %}
2017-10-04 11:49:32 +01:00
2016-02-26 10:46:49 +00:00
{{ page_footer('Add service') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2016-01-18 10:47:53 +00:00
</div>
</div>
{% endblock %}