Mailer: Code cleanup

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-11-26 17:51:08 -04:00
parent 2738e3facf
commit 544edea54a

View File

@@ -17,7 +17,10 @@ setting_link_subject_template = namespace.add_setting(
)
setting_link_body_template = namespace.add_setting(
default=DEFAULT_LINK_BODY_TEMPLATE,
help_text=_('Template for the document link email form body text. Can include HTML.'),
help_text=_(
'Template for the document link email form body text. '
'Can include HTML.'
),
global_name='MAILER_LINK_BODY_TEMPLATE'
)
setting_document_subject_template = namespace.add_setting(
@@ -27,6 +30,8 @@ setting_document_subject_template = namespace.add_setting(
)
setting_document_body_template = namespace.add_setting(
default=DEFAULT_DOCUMENT_BODY_TEMPLATE,
help_text=_('Template for the document email form body text. Can include HTML.'),
help_text=_(
'Template for the document email form body text. Can include HTML.'
),
global_name='MAILER_DOCUMENT_BODY_TEMPLATE'
)