Show places
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2019-09-14 17:15:47 +02:00
parent 25e9ac4982
commit 59420922a5
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 4 additions and 2 deletions

View File

@ -6,18 +6,20 @@ const app = new Vue({
<table class="ui celled striped table" v-if="error === ''">
<thead>
<tr class="top">
<th scope="col">Platz</th>
<th scope="col" v-if="mode === 0">Name</th>
<th scope="col" v-if="mode === 1">Gemeinde</th>
<th scope="col" v-if="mode === 0">Gemeinde</th>
<th scope="col">Eingezahlte KonfiCoins Gesamt</th>
<th scope="col" v-if="mode === 1">KonfiCoins p.P.</th>
<th scope="col" v-if="mode === 1">KonfiCoins pro Person</th>
</tr>
</thead>
<tbody>
<tr v-if="data.length === 0">
<td colspan="4">Laden...</td>
</tr>
<tr v-for="item in data">
<tr v-for="(item, i) in data">
<td>{{ (i + 1) }}.</td>
<td>{{ item.name }}</td>
<td v-if="mode === 0">{{ item.gemeinde }}</td>
<td>{{ item.kcoins }}</td>