Skip to content

Commit

Permalink
added status url on the html email for anon users, fixed wording in p…
Browse files Browse the repository at this point in the history
…laintext
  • Loading branch information
Geekfish committed May 30, 2012
1 parent aab5576 commit cf61307
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
@@ -1,4 +1,4 @@
{% load currency_filters %}<p>Hello,</p>
{% load currency_filters %}<p xmlns="http://www.w3.org/1999/html">Hello,</p>

<p>We are pleased to confirm your order {{ order.number }} has been received and
will be processed shortly.</p>
Expand All @@ -19,4 +19,9 @@
<p>Shipping address:</p>
<p>{% for field in order.shipping_address.active_address_fields %} {{ field }}<br/>
{% endfor %}</p>

{% if status_url %}
<p>You can view the status of this order by clicking <a href="{{ status_url }}" title="order status">here</a>
{% endif %}

<p>The team</p>
Expand Up @@ -17,7 +17,7 @@ Shipping address:
{% endfor %}

{% if status_url %}
You can change the status of this order at the below URL:
You can view the status of this order at the below URL:
{{ status_url }}
{% endif %}

Expand Down

0 comments on commit cf61307

Please sign in to comment.