<table class="table"> <thead> <tr> <th>Paragraph</th> <th>Anzahl Prüfungen</th> <th>Aussicht</th> </tr> </thead> <tbody> {% for stat in statistik %} <tr> <td> § {{ stat.paragraph }} {{ stat.kuerzel }} </td> <td>{{ stat.count|number_format(0,'','.') }} ({{ stat.prozent|number_format(2,',','.') }}%)</td> <td> <a href="https://dejure.org/{{ stat.link }}/{{ stat.paragraph }}.html" target="_blank"> Aussicht </a> </td> </tr> {% endfor %} </tbody></table>