Skip to content
This repository has been archived by the owner on Jun 15, 2019. It is now read-only.

Commit

Permalink
Add order to fraud response list
Browse files Browse the repository at this point in the history
  • Loading branch information
codeinthehole committed Jul 17, 2013
1 parent a563a1c commit 2361174
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions datacash/templates/datacash/dashboard/fraudresponse_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<tr>
<th>{% trans "The3rdMan ID" %}</th>
<th>{% trans "Merchant ref" %}</th>
<th>{% trans "Order" %}</th>
<th>{% trans "Aggregator ID" %}</th>
<th>{% trans "Merchant ID" %}</th>
<th>{% trans "Score" %}</th>
Expand All @@ -39,6 +40,7 @@
<tr {% if r.released %}class="success"{% elif txn.hold %}class="warning"{% else %}class="error"{% endif %}>
<td>{{ r.t3m_id }}</td>
<td>{{ r.merchant_order_ref }}</td>
<td><a href="{% url dashboard:order-detail r.order_number %}">{{ r.order_number }}</a></td>
<td>{{ r.aggregator_identifier|default:"-" }}</td>
<td>{{ r.merchant_identifier }}</td>
<td>{{ r.score }}</td>
Expand Down

0 comments on commit 2361174

Please sign in to comment.