update member table
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
4388fc073b
commit
8229f9a1aa
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="pb-6">
|
||||||
<member-filter
|
<member-filter
|
||||||
:value="query.filter"
|
:value="query.filter"
|
||||||
:activities="filterActivities"
|
:activities="filterActivities"
|
||||||
|
@ -12,10 +12,10 @@
|
||||||
<th></th>
|
<th></th>
|
||||||
<th>Nachname</th>
|
<th>Nachname</th>
|
||||||
<th>Vorname</th>
|
<th>Vorname</th>
|
||||||
<th>Ort</th>
|
<th class="hidden 2xl:table-cell">Ort</th>
|
||||||
<th>Tags</th>
|
<th>Tags</th>
|
||||||
<th>Alter</th>
|
<th class="hidden xl:table-cell">Alter</th>
|
||||||
<th v-show="hasModule('bill')">Rechnung</th>
|
<th class="hidden xl:table-cell" v-show="hasModule('bill')">Rechnung</th>
|
||||||
<th v-show="hasModule('bill')">Ausstand</th>
|
<th v-show="hasModule('bill')">Ausstand</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td v-text="member.lastname"></td>
|
<td v-text="member.lastname"></td>
|
||||||
<td v-text="member.firstname"></td>
|
<td v-text="member.firstname"></td>
|
||||||
<td v-text="member.full_address"></td>
|
<td class="hidden 2xl:table-cell" v-text="member.full_address"></td>
|
||||||
<td>
|
<td>
|
||||||
<div class="bool-row">
|
<div class="bool-row">
|
||||||
<v-bool
|
<v-bool
|
||||||
|
@ -56,8 +56,8 @@
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td v-text="member.age"></td>
|
<td class="hidden xl:table-cell" v-text="member.age"></td>
|
||||||
<td v-show="hasModule('bill')">
|
<td class="hidden xl:table-cell" v-show="hasModule('bill')">
|
||||||
<div class="flex justify-center">
|
<div class="flex justify-center">
|
||||||
<div
|
<div
|
||||||
class="btn btn-sm label primary"
|
class="btn btn-sm label primary"
|
||||||
|
|
Loading…
Reference in New Issue