X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/d0c5ac2cb8bee88ff425ecbb3db3921c4e83ea18..2dd371482b63066c3c8c828977efe2014c5dc13e:/forum/skins/default/templates/notifications/newmember.html diff --git a/forum/skins/default/templates/notifications/newmember.html b/forum/skins/default/templates/notifications/newmember.html index 528c3ac..5de2f29 100644 --- a/forum/skins/default/templates/notifications/newmember.html +++ b/forum/skins/default/templates/notifications/newmember.html @@ -1,31 +1,34 @@ -{% load i18n extra_tags email_tags %} - -{% declare %} - prefix = settings.EMAIL_SUBJECT_PREFIX - app_name = settings.APP_SHORT_NAME - app_url = settings.APP_URL - newmember_name = newmember.username - newmember_url = newmember.get_profile_url -{% enddeclare %} - -{% email %} - {% subject %}{% blocktrans %}{{ newmember_name }} is a new member on {{ app_name }}{% endblocktrans %}{% endsubject %} - - {% htmlcontent notifications/base.html %} -

- {% blocktrans %} - {{ newmember_name }} has just joined {{ app_name }}. You can visit {{ newmember_name }}'s profile using the following link:
- {{ newmember_name }} profile - {% endblocktrans %} -

- {% endhtmlcontent %} - - {% textcontent notifications/base_text.html %} - {% blocktrans %} - {{ newmember_name }} has just joined {{ app_name }}. You can visit {{ newmember_name }}'s profile using the following url:
- {{ app_url }}{{ newmember_url }} - {% endblocktrans %} - {% endtextcontent %} - -{% endemail %} - +{% load i18n extra_tags email_tags %} + +{% declare %} + prefix = html.mark_safe(smart_str(settings.EMAIL_SUBJECT_PREFIX)) + app_name = smart_str(settings.APP_SHORT_NAME) + safe_app_name = html.mark_safe(smart_str(settings.APP_SHORT_NAME)) + app_url = smart_str(settings.APP_URL) + newmember_name = smart_str(newmember.username) + safe_newmember_name = html.mark_safe(smart_str(newmember.username)) + newmember_url = smart_str(newmember.get_profile_url()) + newmember_link = html.objlink(smart_str(newmember), style=settings.EMAIL_ANCHOR_STYLE) +{% enddeclare %} + +{% email %} + {% subject %}{% blocktrans %}{{ prefix }} {{ safe_newmember_name }} is a new member on {{ safe_app_name }}{% endblocktrans %}{% endsubject %} + + {% htmlcontent notifications/base.html %} +

+ {% blocktrans %} + {{ newmember_link }} has just joined {{ app_name }}. + View {{ newmember_name }}'s profile. + {% endblocktrans %} +

+ {% endhtmlcontent %} + +{% textcontent notifications/base_text.html %} +{% blocktrans %} +{{ safe_newmember_name }} has just joined {{ safe_app_name }}. You can visit {{ safe_newmember_name }}'s profile using the following url: +{{ app_url }}{{ newmember_url }} +{% endblocktrans %} +{% endtextcontent %} + +{% endemail %} +