mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 12:21:22 -05:00
Users were having trouble finding the delete template link. It sort of made sense having it on the edit page before we had the view template page. But it doesn’t make sense now – having to choose to ‘edit’ the template before you can delete is counterintuitive. The single template page is where you go to choose an action to perform on your template. Deleting is a good example of an action you can perform on a template. So this commit moves the delete link from the edit template page to the view template page. It also puts the confirm banner on same page as the delete link The idea being that, in order to make a decision about whether to delete the template, it’s useful to be able to see the template you’re deleting. There’s no user need to edit the template before you delete it.
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/radios.html" import radios %}
|
||
|
||
{% block service_page_title %}
|
||
{{ heading_action }} email template
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
{{ heading_action }} email template
|
||
</h1>
|
||
|
||
<form method="post">
|
||
<div class="grid-row">
|
||
<div class="column-five-sixths">
|
||
{{ textbox(form.name, width='1-1', hint='Your recipients won’t see this', rows=10) }}
|
||
{{ textbox(form.subject, width='1-1', highlight_tags=True, rows=2) }}
|
||
{{ textbox(form.template_content, highlight_tags=True, width='1-1', rows=8) }}
|
||
{% if current_user.has_permissions([], admin_override=True) %}
|
||
{{ radios(form.process_type) }}
|
||
{% endif %}
|
||
{{ page_footer(
|
||
'Save'
|
||
) }}
|
||
</div>
|
||
<aside class="column-whole">
|
||
{% include "partials/templates/guidance-formatting.html" %}
|
||
{% include "partials/templates/guidance-personalisation.html" %}
|
||
{% include "partials/templates/guidance-optional-content.html" %}
|
||
{% include "partials/templates/guidance-links.html" %}
|
||
</aside>
|
||
</div>
|
||
</form>
|
||
|
||
{% endblock %}
|