diff options
author | Struan Donald <struan@exo.org.uk> | 2011-05-26 18:21:10 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-05-26 18:21:10 +0100 |
commit | 4308906bc2695f1fd034b8f5f1a6be657e6d4dfe (patch) | |
tree | dc5f8c5639155f7cff66579b301e4b499ac44c50 /templates/web/default/tokens | |
parent | 860f2965f9af0699a40e022ba7c7370a304a4313 (diff) |
put all confirmation templates under tokens for consistency
Diffstat (limited to 'templates/web/default/tokens')
-rw-r--r-- | templates/web/default/tokens/confirm_alert.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/web/default/tokens/confirm_alert.html b/templates/web/default/tokens/confirm_alert.html new file mode 100644 index 000000000..07694cbb6 --- /dev/null +++ b/templates/web/default/tokens/confirm_alert.html @@ -0,0 +1,17 @@ +[% INCLUDE 'header.html', title => loc('Local RSS feeds and email alerts') %] + +<h1>[% loc('Local RSS feeds and email alerts') %]</h1> + +<p> +[% IF confirm_type == 'subscribe' %] + [% loc('You have successfully confirmed your alert.') %] +[% ELSIF confirm_type == 'unsubscribe' %] + [% loc('You have successfully deleted your alert.') %] +[% ELSIF confirm_type == 'created' %] + [% loc('You have successfully created your alert.') %] +[% END %] +</p> + +[% display_crossell_advert( alert.user.email, alert.user.name ) %] + +[% INCLUDE 'footer.html' %] |