This commit is contained in:
2020-08-07 14:25:08 +02:00
8 changed files with 65 additions and 27 deletions
@@ -48,9 +48,13 @@
</style>
<main style="min-height: calc(100% - 61.3px)">
<table class="tbl" style="margin: 2rem 8px 0px 8px; width: calc(100% - 16px);">
<tr>
<th style="text-align: center;">{{ __('msg.tilmeldtesnavn') }}</th>
</tr>
@if(count($events) == 0)
<p class="text-center mt-2">{{__('msg.ingentilmeldte')}}</p>
@else
<tr>
<th style="text-align: center;">{{ __('msg.tilmeldtesnavn') }}</th>
</tr>
@endif
@foreach($events as $UE)
@if ($UE->name_first != null && $UE->name_last != null && $UE->phone != null && $UE->event_id != null && $UE->user_id != null)
<tr>
@@ -58,9 +62,6 @@
</tr>
@endif
@endforeach
@if(count($events) == 0)
<p class="text-center">Der er ingen tilmeldte</p>
@endif
</table>
<button onclick="window.history.back();" style="margin-top: auto; margin-bottom: 8px;" class="btn btn-sde-blue text-white">{{ __('msg.tilbage') }}</button>
</main>