From a6279f4114b05adcc83d0eb2d4a3ec251b6cf402 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 14 Apr 2016 14:43:06 +0100 Subject: [PATCH] Move placeholder hint to align with subject If the hint aligns with the message body then it looks like you can only add placeholders to the body. This commit aligns it with the subject instead, and since it overlaps both it looks like you can add placeholders to both (hopefully). --- app/templates/views/edit-email-template.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/views/edit-email-template.html b/app/templates/views/edit-email-template.html index 87d5f5d78..71f286db1 100644 --- a/app/templates/views/edit-email-template.html +++ b/app/templates/views/edit-email-template.html @@ -16,9 +16,9 @@
{{ 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.subject, width='1-1', highlight_tags=True, rows=2) }} {{ textbox(form.template_content, highlight_tags=True, width='1-1', rows=8) }} {{ page_footer( 'Save', @@ -29,7 +29,7 @@