lingo: fix usage of order_id/transaction_id in transaction table (#11314)

This commit is contained in:
Frédéric Péters 2016-06-13 09:42:49 +02:00
parent 933eb2673c
commit 13265b5cb4
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@
<table class="main">
<thead>
<tr>
<th>{% trans 'Order Identifier' %}</th>
<th>{% trans 'Transaction Identifier' %}</th>
<th>{% trans 'Date' %}</th>
<th>{% trans 'User' %}</th>
@ -27,6 +28,7 @@
{% for object in object_list %}
<tr>
<td rowspan="{{object.items.all.count|default:1}}">{{object.order_id}}</td>
<td rowspan="{{object.items.all.count|default:1}}">{{object.bank_transaction_id}}</td>
<td rowspan="{{object.items.all.count|default:1}}">{{object.start_date}}</td>
<td rowspan="{{object.items.all.count|default:1}}">{{object.user.first_name}} {{object.user.last_name}}</td>
<td rowspan="{{object.items.all.count|default:1}}">{{object.amount}} €</td>