mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-03-07 12:13:18 +00:00
⚙️ Make community a required field in meetup create/edit forms
🛠️ Add “Keine” placeholder option to community select ✏️ Translate community values (“bitcoin”, “einundzwanzig”) on landing page 🌍 Update German locale strings for community names
This commit is contained in:
@@ -145,7 +145,15 @@ class extends Component {
|
||||
@if($meetup->community)
|
||||
<div>
|
||||
<flux:heading size="sm" class="mb-2">Community</flux:heading>
|
||||
<p class="text-gray-700 dark:text-gray-300">{{ $meetup->community }}</p>
|
||||
<p class="text-gray-700 dark:text-gray-300">
|
||||
@if ($meetup->community === 'bitcoin')
|
||||
{{ __('Allgemeine Bitcoin Community') }}
|
||||
@elseif ($meetup->community === 'einundzwanzig')
|
||||
{{ __('Einundzwanzig Community') }}
|
||||
@else
|
||||
{{ $meetup->community }}
|
||||
@endif
|
||||
</p>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user