🗑️ Remove election-related blade files no longer in use

This commit is contained in:
HolgerHatGarKeineNode
2026-01-17 23:26:05 +01:00
parent 220680ab3a
commit 0abbe69868
58 changed files with 4839 additions and 2930 deletions

View File

@@ -0,0 +1,20 @@
<x-layouts.app title="{{ __('Mitglieder') }}">
<div>
<?php if($isAllowed): ?>
<div class="px-4 sm:px-6 lg:px-8 py-8 w-full max-w-9xl mx-auto">
<livewire:einundzwanzig-pleb-table/>
</div>
<?php else: ?>
<div class="px-4 sm:px-6 lg:px-8 py-8 w-full max-w-9xl mx-auto">
<div class="bg-white dark:bg-[#1B1B1B] shadow overflow-hidden sm:rounded-lg">
<div class="px-4 py-5 sm:px-6">
<h3 class="text-lg font-medium leading-6 text-gray-900 dark:text-gray-200">Mitglieder</h3>
<p class="mt-1 max-w">
Du bist nicht berechtigt, Mitglieder zu bearbeiten.
</p>
</div>
</div>
</div>
<?php endif; ?>
</div>
</x-layouts.app>