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

Commit

Permalink
Fix bug in fraud response list template
Browse files Browse the repository at this point in the history
  • Loading branch information
codeinthehole committed Jul 17, 2013
1 parent 99dbfa5 commit 360a4c9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<thead>
<tr>
<th>{% trans "The3rdMan ID" %}</th>
<th>{% trans "Merchant ref" %}</th>
<th>{% trans "Aggregator ID" %}</th>
<th>{% trans "Merchant ID" %}</th>
<th>{% trans "Score" %}</th>
Expand All @@ -37,11 +38,12 @@
{% for r in responses %}
<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>{{ r.aggregator_identifier|default:"-" }}</td>
<td>{{ r.merchant_identifier }}</td>
<td>{{ r.score }}</td>
<td>{{ r.recommendation }}</td>
<td>{{ txn.date_created }}</td>
<td>{{ r.date_created }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 360a4c9

Please sign in to comment.