Added a new table header and column to display a test membership indicator in MembersView.vue.

This commit is contained in:
Torsten Schulz
2024-11-07 09:10:33 +01:00
parent ab9e56f8ed
commit 247f43f122

View File

@@ -42,6 +42,7 @@
<thead>
<tr>
<th>Bild</th>
<th>Testm.</th>
<th>Name, Vorname</th>
<th>Adresse</th>
<th>Geburtsdatum</th>
@@ -58,6 +59,7 @@
style="max-width: 50px; max-height: 50px;"
@click.stop="openImageModal(member.imageUrl)">
</td>
<td>{{ member.testMembership ? '*' : '' }}</td>
<td>{{ member.lastName }}, {{ member.firstName }}</td>
<td>{{ member.street }}, {{ member.city }}</td>
<td>{{ getFormattedBirthdate(member.birthDate) }}</td>