Skip to content

Commit

Permalink
Merge 37a773b into 7eb20a2
Browse files Browse the repository at this point in the history
  • Loading branch information
goyal1092 committed May 17, 2014
2 parents 7eb20a2 + 37a773b commit 63818a9
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
1 change: 1 addition & 0 deletions templates/emails/sale-confirmation-html.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{% extends 'webshop/emails/sale-confirmation-html.jinja' %}
1 change: 1 addition & 0 deletions templates/emails/sale-confirmation-text.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{% extends 'webshop/emails/sale-confirmation-text.jinja' %}
2 changes: 1 addition & 1 deletion templates/webshop/emails/activation-html.jinja
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% trans %}
Dear {{ nereid_user.display_name }},
<br/>
Thank youf or signing up.
Thank you for signing up.
<br/>
To verify your account please
<a href="{{ nereid_user.get_activation_link(_external=True) }}">click here</a>
Expand Down
17 changes: 17 additions & 0 deletions templates/webshop/emails/sale-confirmation-html.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{% trans %}
Dear {{ nereid_user.display_name }},
<br/>
Thank you for shopping from our store.
<br/>
To view your order details please
<a href="{{ url_for('sale.sale.render_list') }}"> click here </a>
or copy and paste it to your browser:
<br/>
{{ url_for('sale.sale.render_list', _external=True) }}
<br/>

Thanks
<br/>

Team
{% endtrans %}
15 changes: 15 additions & 0 deletions templates/webshop/emails/sale-confirmation-text.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{% trans %}
Dear {{ nereid_user.display_name }},

Thank you for shopping from our store.

To view your order details please click on the link below or copy
and paste it to your browser:

<a href="{{ url_for('sale.sale.render_list', _external=True) }}">{{ url_for('sale.sale.render_list', _external=True) }}</a>


Thanks

Team
{% endtrans %}

0 comments on commit 63818a9

Please sign in to comment.