accountmodal table style
This commit is contained in:
		@@ -6,14 +6,14 @@
 | 
				
			|||||||
        <h4 class="modal-title">Abrechnung</h4>
 | 
					        <h4 class="modal-title">Abrechnung</h4>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      <div class="modal-body">
 | 
					      <div class="modal-body">
 | 
				
			||||||
        <table class="table">
 | 
					        <table class="table table-striped">
 | 
				
			||||||
            <thead>
 | 
					            <thead>
 | 
				
			||||||
            <tr>
 | 
					            <tr>
 | 
				
			||||||
                <td>Tisch #</td>
 | 
					                <td>Tisch #</td>
 | 
				
			||||||
                <td>Tisch Name</td>
 | 
					                <td>Tisch Name</td>
 | 
				
			||||||
                <td>Normalpreis</td>
 | 
					                <td class="text-right">Normalpreis</td>
 | 
				
			||||||
                <td>Preis HH</td>
 | 
					                <td class="text-right">Preis HH</td>
 | 
				
			||||||
                <td>Gesamt</td>
 | 
					                <td class="text-right">Gesamt</td>
 | 
				
			||||||
            </tr>
 | 
					            </tr>
 | 
				
			||||||
            </thead>
 | 
					            </thead>
 | 
				
			||||||
            {% for account in accounts %}
 | 
					            {% for account in accounts %}
 | 
				
			||||||
@@ -22,7 +22,7 @@
 | 
				
			|||||||
              <td>{{ account.desk.name }}</td>
 | 
					              <td>{{ account.desk.name }}</td>
 | 
				
			||||||
              <td class="text-right">{{ account.prize_normal }}</td>
 | 
					              <td class="text-right">{{ account.prize_normal }}</td>
 | 
				
			||||||
              <td class="text-right">{{ account.prize_hh }}</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>
 | 
					          </tr>
 | 
				
			||||||
            {% endfor %}
 | 
					            {% endfor %}
 | 
				
			||||||
        </table>
 | 
					        </table>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user