Add a hint to ‘Template name’ text input

We’ve seen lots of users unsure what the ‘template name’ field is for,
especially on first use. Is it the subject line of the text message?
Will it be who the message comes from? Answer: neither.

So this commit adds a hint to make that clearer.
This commit is contained in:
Chris Hill-Scott
2016-04-03 12:10:00 +01:00
parent 42cb4b0d99
commit 95b75d8220
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
<form method="post"> <form method="post">
<div class="grid-row"> <div class="grid-row">
<div class="column-two-thirds"> <div class="column-two-thirds">
{{ textbox(form.name, width='1-1') }} {{ textbox(form.name, width='1-1', hint='Your recipients wont see this') }}
{{ textbox(form.subject, width='1-1') }} {{ textbox(form.subject, width='1-1') }}
</div> </div>
<div class="column-two-thirds"> <div class="column-two-thirds">

View File

@@ -15,7 +15,7 @@
<form method="post"> <form method="post">
<div class="grid-row"> <div class="grid-row">
<div class="column-two-thirds"> <div class="column-two-thirds">
{{ textbox(form.name, width='1-1') }} {{ textbox(form.name, width='1-1', hint='Your recipients wont see this') }}
</div> </div>
<div class="column-two-thirds"> <div class="column-two-thirds">
{{ textbox(form.template_content, highlight_tags=True, width='1-1') }} {{ textbox(form.template_content, highlight_tags=True, width='1-1') }}