Browse Source

Add reference to payment sources tab in order dashboard

master
David Winterbottom 13 years ago
parent
commit
ef16ce043c
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      oscar/templates/oscar/dashboard/orders/order_detail.html

+ 2
- 0
oscar/templates/oscar/dashboard/orders/order_detail.html View File

347
 							<th>{% trans "Allocation" %}</th>
347
 							<th>{% trans "Allocation" %}</th>
348
 							<th>{% trans "Amount debited" %}</th>
348
 							<th>{% trans "Amount debited" %}</th>
349
 							<th>{% trans "Amount refunded" %}</th>
349
 							<th>{% trans "Amount refunded" %}</th>
350
+							<th>{% trans "Reference" %}</th>
350
 						</tr>  
351
 						</tr>  
351
 					</thead>	
352
 					</thead>	
352
 					<tbody> 
353
 					<tbody> 
356
 							<td>{{ source.amount_allocated|currency }}</td>
357
 							<td>{{ source.amount_allocated|currency }}</td>
357
 							<td>{{ source.amount_debited|currency }}</td>
358
 							<td>{{ source.amount_debited|currency }}</td>
358
 							<td>{{ source.amount_refunded|currency }}</td>
359
 							<td>{{ source.amount_refunded|currency }}</td>
360
+							<td>{{ source.reference|default:"-" }}</td>
359
 						</tr>
361
 						</tr>
360
 						{% endfor %}
362
 						{% endfor %}
361
 					</tbody>
363
 					</tbody>

Loading…
Cancel
Save