summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/re_welcome_lamson_on.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/templates/email/re_welcome_lamson_on.html')
-rw-r--r--askbot/templates/email/re_welcome_lamson_on.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/askbot/templates/email/re_welcome_lamson_on.html b/askbot/templates/email/re_welcome_lamson_on.html
index d2c7884c..f30345d1 100644
--- a/askbot/templates/email/re_welcome_lamson_on.html
+++ b/askbot/templates/email/re_welcome_lamson_on.html
@@ -2,12 +2,16 @@
{% block headline %}{% trans %}Great, you are ready to use {{ site_name }}!{% endtrans %}{%endblock%}
{% block title %}{% trans %}Great, you are ready to use {{ site_name }}!{% endtrans %}{%endblock%}
-{%block content %}
-<p>{% trans %}You can post questions by emailing them at {{ ask_address }}.{% endtrans %}</p>
-<p>{% trans %}When you receive update notifications, you will be able to respond to them, also by email.{% endtrans %}</p>
-<p>{% trans %}Of course, you can always visit the {{ site_name }} at <a href="{{ site_url }}">{{ site_url }}</a>{% endtrans %}</p>
-{%endblock%}
+{% block content %}
+{% if can_post_by_email %}
+ <p>{% trans %}You can post questions by emailing them at {{ ask_address }}.{% endtrans %}</p>
+ <p>{% trans %}When you receive update notifications, you will be able to respond to them, also by email.{% endtrans %}</p>
+ <p>{% trans %}Of course, you can always visit the {{ site_name }} at <a href="{{ site_url }}">{{ site_url }}</a>.{% endtrans %}</p>
+{% else %}
+ <p>{% trans %}Please visit {{ site_name }} at <a href="{{ site_url }}">{{ site_url }}</a>, we look forward to your posts.{% endtrans %}</p>
+{% endif %}
+{% endblock %}
-{%block footer%}
+{% block footer %}
{% include "email/footer.html" %}
-{%endblock%}
+{% endblock %}