fixed feature ##289
Buttons von usern werden entfernt, wenn sie gesperrt sind.
This commit is contained in:
parent
dc3a403990
commit
1ca0abd36d
|
@ -84,7 +84,7 @@
|
|||
übrig!!
|
||||
</v-card-subtitle>
|
||||
<v-card-text>
|
||||
<v-row>
|
||||
<v-row v-if="!user.locked">
|
||||
<v-col cols="10">
|
||||
<v-row>
|
||||
<v-col cols="6" xs="5" sm="4">
|
||||
|
@ -207,21 +207,44 @@
|
|||
<v-col align-self="center">
|
||||
<v-row>
|
||||
<v-list-item>
|
||||
<v-list-item-content class="text-center">
|
||||
<v-list-item-action-text :class="getColor(user.type)"
|
||||
>{{
|
||||
(user.amount / 100).toFixed(2)
|
||||
}}
|
||||
€</v-list-item-action-text
|
||||
€
|
||||
</v-list-item-action-text
|
||||
>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
</v-row>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<v-row>
|
||||
<v-col cols="10">
|
||||
<v-alert v-if="user.locked" type="error"
|
||||
>{{ user.firstname }} darf nicht mehr anschreiben.
|
||||
{{ user.firstname }} sollte sich lieber mal beim Finanzer
|
||||
melden.</v-alert
|
||||
melden.
|
||||
</v-alert
|
||||
>
|
||||
</v-col>
|
||||
<v-col align-self="center" v-if="user.locked">
|
||||
<v-row>
|
||||
<v-list-item>
|
||||
<v-list-item-content class="text-center">
|
||||
<v-list-item-action-text :class="getColor(user.type)"
|
||||
>{{
|
||||
(user.amount / 100).toFixed(2)
|
||||
}}
|
||||
€
|
||||
</v-list-item-action-text
|
||||
>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
</v-row>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
<v-snackbar
|
||||
|
|
Loading…
Reference in New Issue