🚀 Add courses and lecturers management functionality

This commit is contained in:
HolgerHatGarKeineNode
2025-11-21 14:23:59 +01:00
parent 976844487a
commit e96413d1a0
18 changed files with 1740 additions and 17 deletions

View File

@@ -212,7 +212,7 @@ new class extends Component {
<div class="flex items-center justify-between mb-2">
<flux:label>{{ __('Stadt') }}</flux:label>
<flux:modal.trigger name="add-city">
<flux:button size="xs" variant="ghost" icon="plus">
<flux:button class="cursor-pointer" size="xs" variant="ghost" icon="plus">
{{ __('Stadt hinzufügen') }}
</flux:button>
</flux:modal.trigger>
@@ -350,7 +350,7 @@ new class extends Component {
<!-- Form Actions -->
<div class="flex items-center justify-between pt-8 border-t border-gray-200 dark:border-gray-700">
<flux:button variant="ghost" type="button" onclick="history.back()">
<flux:button class="cursor-pointer" variant="ghost" type="button" onclick="history.back()">
{{ __('Abbrechen') }}
</flux:button>
@@ -361,7 +361,7 @@ new class extends Component {
</flux:text>
@endif
<flux:button variant="primary" type="submit">
<flux:button class="cursor-pointer" variant="primary" type="submit">
{{ __('Meetup aktualisieren') }}
</flux:button>
</div>
@@ -420,10 +420,10 @@ new class extends Component {
<flux:spacer/>
<flux:modal.close>
<flux:button type="button" variant="ghost">{{ __('Abbrechen') }}</flux:button>
<flux:button class="cursor-pointer" type="button" variant="ghost">{{ __('Abbrechen') }}</flux:button>
</flux:modal.close>
<flux:button type="submit" variant="primary">{{ __('Stadt erstellen') }}</flux:button>
<flux:button class="cursor-pointer" type="submit" variant="primary">{{ __('Stadt erstellen') }}</flux:button>
</div>
</form>
</flux:modal>