accountmodal table style

This commit is contained in:
Alexander Werner 2017-08-17 20:23:14 +02:00
parent 33cd50a2c6
commit 899ddb24e5

View File

@ -6,14 +6,14 @@
<h4 class="modal-title">Abrechnung</h4>
</div>
<div class="modal-body">
<table class="table">
<table class="table table-striped">
<thead>
<tr>
<td>Tisch #</td>
<td>Tisch Name</td>
<td>Normalpreis</td>
<td>Preis HH</td>
<td>Gesamt</td>
<td class="text-right">Normalpreis</td>
<td class="text-right">Preis HH</td>
<td class="text-right">Gesamt</td>
</tr>
</thead>
{% for account in accounts %}
@ -22,7 +22,7 @@
<td>{{ account.desk.name }}</td>
<td class="text-right">{{ account.prize_normal }}</td>
<td class="text-right">{{ account.prize_hh }}</td>
<td class="text-right font-weight-bold">{{ account.prize }}</td>
<td class="text-right"><strong>{{ account.prize }}</strong></td>
</tr>
{% endfor %}
</table>