diff --git a/app/main/forms.py b/app/main/forms.py index 4bc100129..a688c8bdb 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -290,7 +290,7 @@ class EmailTemplateForm(BaseTemplateForm): class LetterTemplateForm(EmailTemplateForm): subject = TextAreaField( - u'Title', + u'Main heading', validators=[DataRequired(message="Can’t be empty")]) template_content = TextAreaField( diff --git a/app/main/views/templates.py b/app/main/views/templates.py index 71b3a7cef..df395924d 100644 --- a/app/main/views/templates.py +++ b/app/main/views/templates.py @@ -167,9 +167,9 @@ def add_template_by_type(service_id): blank_letter = service_api_client.create_service_template( 'Untitled', 'letter', - 'Content', + 'Body', service_id, - 'Title', + 'Main heading', 'normal', ) return redirect(url_for( diff --git a/app/templates/partials/templates/guidance-formatting-letters.html b/app/templates/partials/templates/guidance-formatting-letters.html index 77d8d6be4..eaa3a01ba 100644 --- a/app/templates/partials/templates/guidance-formatting-letters.html +++ b/app/templates/partials/templates/guidance-formatting-letters.html @@ -1,10 +1,10 @@

Formatting

- To put a title in your template, use a hash: + To put a heading in your template, use a hash:

- # This is a title + # This is a heading