mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 17:38:50 -04:00
The add new templates page now has option to add template folders. Tweaked wording of other options and h1 to clarify options since it's not all about templates any more. Added api client and stuff for it
23 lines
528 B
HTML
23 lines
528 B
HTML
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Add new template or folder
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">What do you want to add?</h1>
|
|
|
|
{% call form_wrapper() %}
|
|
{{ radios(form.template_type) }}
|
|
{{ page_footer(
|
|
'Continue'
|
|
) }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|