summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/welcome_lamson_off.html
blob: dfa6f6ca1cecf83e50bc34994bd8595b0b1f5a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "email/base_mail.html" %}
{% import "email/macros.html" as macros %}
{# site_name - is short name of the site, email_code - address portion
of the reply email used for this message, we scan to the last appearance
of the email code to detect the response signature that will appear under #}
{% set welcome_msg = settings.EMAIL_TEXT_SHORT_WELCOME|sub_vars(recipient_user) %}
{% block title %}{{ welcome_msg }}{% endblock %}
{% block headline %}{% trans %}{{ welcome_msg }}{% endblock %}
{% block content %}
    {{ settings.EMAIL_TEXT_LONG_WELCOME|sub_vars(recipient_user) }}
{% endblock %}
{% block footer %}
{% include "email/footer.html" %}
{% endblock %}