mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
33 lines
707 B
HTML
33 lines
707 B
HTML
{% extends "base.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"}}) }}
|
|
|
|
<!--{% if not default_organization_type %}
|
|
{{ form.organization_type }}
|
|
{% endif %}-->
|
|
|
|
{{ page_footer('Add service') }}
|
|
|
|
{% endcall %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|