24 lines
731 B
Python
24 lines
731 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
DEFAULT_DOCUMENT_BODY_TEMPLATE = _(
|
|
'Attached to this email is the document: {{ document }}\n\n '
|
|
'--------\n '
|
|
'This email has been sent from %(project_title)s (%(project_website)s)'
|
|
) % {
|
|
'project_title': settings.PROJECT_TITLE,
|
|
'project_website': settings.PROJECT_WEBSITE
|
|
}
|
|
|
|
DEFAULT_LINK_BODY_TEMPLATE = _(
|
|
'To access this document click on the following link: '
|
|
'{{ link }}\n\n--------\n '
|
|
'This email has been sent from %(project_title)s (%(project_website)s)'
|
|
) % {
|
|
'project_title': settings.PROJECT_TITLE,
|
|
'project_website': settings.PROJECT_WEBSITE
|
|
}
|