mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-04 05:31:44 -04:00
35 lines
896 B
HTML
35 lines
896 B
HTML
{% extends "withoutnav_template.html" %}
|
|
{% 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="grid-col-8">
|
|
|
|
{{ page_header('About your service') }}
|
|
|
|
{% call form_wrapper() %}
|
|
|
|
{{ form.name(param_extensions={"hint": {"text": "You can change this later"}}) }}
|
|
|
|
<!--on demo, default_organization_type is defined as something so we never get these radio buttons,
|
|
but then it becomes impossible to add a service-->
|
|
<!--{% if not default_organization_type %}-->
|
|
{{ form.organization_type }}
|
|
<!--{% endif %}-->
|
|
|
|
{{ page_footer('Add service') }}
|
|
|
|
{% endcall %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|