2024-04-24 12:31:00 -07:00
|
|
|
{% extends "base.html" %}
|
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 %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block per_page_title %}
|
|
|
|
|
{{ heading }}
|
2015-11-25 16:21:28 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-8">
|
2016-01-18 10:47:53 +00:00
|
|
|
|
2019-04-29 11:44:05 +01:00
|
|
|
{{ page_header('About your service') }}
|
2016-01-18 10:47:53 +00:00
|
|
|
|
2025-03-21 18:53:49 -07:00
|
|
|
{% call form_wrapper(data_force_focus=True) %}
|
2016-02-18 14:54:59 +00:00
|
|
|
|
2020-08-07 12:18:29 +01:00
|
|
|
{{ form.name(param_extensions={"hint": {"text": "You can change this later"}}) }}
|
2016-02-18 14:54:59 +00:00
|
|
|
|
2023-09-19 14:30:32 -07:00
|
|
|
<!--{% if not default_organization_type %}
|
2023-07-12 12:09:44 -04:00
|
|
|
{{ form.organization_type }}
|
2023-09-19 14:30:32 -07:00
|
|
|
{% endif %}-->
|
2017-10-04 11:49:32 +01:00
|
|
|
|
2016-02-26 10:46:49 +00:00
|
|
|
{{ page_footer('Add service') }}
|
2016-02-18 14:54:59 +00:00
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2016-01-18 10:47:53 +00:00
|
|
|
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
</div>
|
|
|
|
|
|
2015-12-01 09:50:20 +00:00
|
|
|
{% endblock %}
|