aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2013-01-24 18:30:16 +0000
committerMatthew Somerville <matthew@mysociety.org>2013-01-24 18:30:16 +0000
commit5345e2f49fc38a690ba8ad756af9c66458beca34 (patch)
tree80ceddfb4cf477747fa5efafe206ef261cbb6480
parent29765918541ea4b00502c9723a5a8557c9f30a52 (diff)
Don't show meaningless text to Zurich.
-rw-r--r--templates/web/default/email_sent.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/templates/web/default/email_sent.html b/templates/web/default/email_sent.html
index 4faa9f490..9afddf2bd 100644
--- a/templates/web/default/email_sent.html
+++ b/templates/web/default/email_sent.html
@@ -8,7 +8,8 @@
<p>[% loc("If you use web-based email or have 'junk mail' filters, you may wish to check your bulk/spam mail folders: sometimes, our messages are marked that way.") %]</p>
-<p>
+[% IF c.cobrand.moniker != 'zurich' %]
+ <p>
[% loc("You must now click the link in the email we've just sent you.") %]
[% IF email_type == 'problem' %]
[% loc("If you do not, your problem will not be posted.") %]
@@ -17,16 +18,17 @@
[% ELSIF email_type == 'alert' %]
[% loc("If you do not, your alert will not be activated.") %]
[% END %]
-</p>
+ </p>
-[% IF c.cobrand.moniker != 'zurich' %]
+ <p>
[% IF email_type == 'problem' %]
- <p>[% loc("(Don't worry &mdash; we'll hang on to your problem report while you're checking your email.)") %]</p>
+ [% loc("(Don't worry &mdash; we'll hang on to your problem report while you're checking your email.)") %]
[% ELSIF email_type == 'update' %]
- <p>[% loc("(Don't worry &mdash; we'll hang on to your update while you're checking your email.)") %]</p>
+ [% loc("(Don't worry &mdash; we'll hang on to your update while you're checking your email.)") %]
[% ELSIF email_type == 'alert' %]
- <p>[% loc("(Don't worry &mdash; we'll hang on to your alert while you're checking your email.)") %]</p>
+ [% loc("(Don't worry &mdash; we'll hang on to your alert while you're checking your email.)") %]
[% END %]
+ </p>
[% END %]
[% INCLUDE 'footer.html' %]