show both users on reimbursements
This commit is contained in:
parent
b4698f3fdc
commit
090a3b1e28
|
@ -6,6 +6,10 @@
|
|||
<th>Reimbursement User</th>
|
||||
<td>{{ reimbursement.reimbursement_user }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Created By Economy Team Member</th>
|
||||
<td>{{ reimbursement.user }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Total Amount</th>
|
||||
<td>{{ reimbursement.amount }} DKK</td>
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Camp</th>
|
||||
<th>User</th>
|
||||
<th>Created By</th>
|
||||
<th>Created For</th>
|
||||
<th>Economy Team Notes</th>
|
||||
<th>Amount</th>
|
||||
<th>Paid</th>
|
||||
|
@ -15,6 +16,7 @@
|
|||
<tr>
|
||||
<td>{{ reim.camp }}</td>
|
||||
<td>{{ reim.user }}</td>
|
||||
<td>{{ reim.reimbursement_user }}</td>
|
||||
<td>{{ reim.notes|default:"N/A" }}</td>
|
||||
<td>{{ reim.amount }} DKK</td>
|
||||
<td>{{ reim.paid }}</td>
|
||||
|
|
Loading…
Reference in a new issue