You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmbarter/templates/customer_orders.html
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,15 @@ <h3>{% trans "Payment orders from this trader" %}</h3>
32
32
{% for row in orders %}
33
33
<tr>
34
34
<tdscope="row">
35
+
<ahref='/{{user.trader_id}}/traders/{{trader.trader_id}}/orders/{{row.order_id}}/' title='{% blocktrans with row|order_truncate_amount as amount and row|product|escape as product %}{{amount}} of "{{product}}"{% endblocktrans %}'>
35
36
{% if row.execution_ts %}
36
37
<imgsrc="/static/green_accept.gif" alt="(V)">
37
38
{% else %}{% if row.issuer_message == None %}
38
39
<imgsrc="/static/blue_exclamation.gif" alt="(!)">
39
40
{% else %}
40
41
<imgsrc="/static/red_reject.gif" alt="(X)">
41
42
{% endif %}{% endif %}
42
-
<div><ahref='/{{user.trader_id}}/traders/{{trader.trader_id}}/orders/{{row.order_id}}/' title='{% blocktrans with row|order_truncate_amount as amount and row|product|escape as product %}{{amount}} of "{{product}}"{% endblocktrans %}'><strong>{{row.order_id}}</strong></a></div>
0 commit comments