- <table class="table table-bordered">
- <thead>
- <tr>
- <th>Auftrag_Position</th>
- <th>Betrag</th>
- </tr>
- </thead>
- <tbody>
- {% for row in auftrag_positionen %}
- <tr>
- <td>{{ row.Auftrag_Position }}</td>
- <td class="text-end">{{ row.Betrag|number_format }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
|