Files
notifications-admin/app/templates/views/templates/add.html
Leo Hemsted 7cbf5de240 add new template folder
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
2018-11-06 13:13:12 +00:00

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 %}