district-politics/projects/speech-statistics/src/app/auth/administration/factions/factions.component.html

17 lines
262 B
HTML

<table class="table">
<thead>
<tr>
<th>Fraktion</th>
<th># Mitglieder</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let faction of factions">
<td>{{faction.name}}</td>
<td>{{faction.size}}</td>
</tr>
</tbody>
</table>