1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-18 08:16:07 +00:00

seahub.invitations: Give more context to template

So that e.g. the accepter can be addressed more directly or different
template texts can be used depending on the accepter's domain.
This commit is contained in:
Moritz Schlarb
2017-10-04 14:57:50 +02:00
committed by Moritz Schlarb
parent 3bd12e7ad2
commit 50b6ea05b8

View File

@@ -7,6 +7,7 @@ from django.utils import timezone
from django.utils.translation import ugettext as _
from seahub.base.fields import LowerCaseCharField
from seahub.invitations.utils import block_accepter
from seahub.invitations.settings import INVITATIONS_TOKEN_AGE
from seahub.utils import gen_token
from seahub.utils.timeutils import datetime_to_isoformat_timestr
@@ -83,11 +84,9 @@ class Invitation(models.Model):
if not email:
email = self.accepter
context = {
'inviter': self.inviter,
'site_name': SITE_NAME,
'token': self.token,
}
context = self.to_dict()
context['site_name'] = SITE_NAME
# subject = render_to_string('invitations/invitation_email_subject.txt',
# context).rstrip()
subject = _('%(user)s invited you to join %(site_name)s.') % {