mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
resolves #18
This commit is contained in:
@@ -55,6 +55,19 @@
|
||||
</x-button>
|
||||
</div>
|
||||
@endif
|
||||
@if($row->simplex)
|
||||
<div>
|
||||
<x-button
|
||||
xs
|
||||
black
|
||||
target="_blank"
|
||||
:href="$row->simplex"
|
||||
>
|
||||
<i class="fa fa-thin fa-external-link mr-2"></i>
|
||||
{{ __('SimpleX-Link') }}
|
||||
</x-button>
|
||||
</div>
|
||||
@endif
|
||||
@if($row->webpage)
|
||||
<div>
|
||||
<x-button
|
||||
|
||||
@@ -64,15 +64,11 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if(false && app()->environment('local'))
|
||||
@if(app()->environment('local'))
|
||||
<div class="flex items-center justify-end mt-4">
|
||||
|
||||
<x-button icon="login" secondary class="ml-4" wire:click="switchToEmailLogin">
|
||||
{{ __('Email login') }}
|
||||
</x-button>
|
||||
|
||||
<x-button icon="at-symbol" primary class="ml-4" wire:click="switchToEmailSignup">
|
||||
{{ __('Email registration') }}
|
||||
<x-button icon="login" secondary class="ml-4" href="{{ route('loginAsAdmin') }}">
|
||||
{{ __('Admin login') }}
|
||||
</x-button>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -93,6 +93,12 @@
|
||||
/>
|
||||
</x-input.group>
|
||||
|
||||
<x-input.group :for="md5('meetup.simplex')" :label="__('Simplex')">
|
||||
<x-input autocomplete="off" wire:model.debounce="meetup.simplex"
|
||||
:placeholder="__('Simplex')"
|
||||
/>
|
||||
</x-input.group>
|
||||
|
||||
<x-input.group :for="md5('meetup.matrix_group')" :label="__('Matrix Group')">
|
||||
<x-input autocomplete="off" wire:model.debounce="meetup.matrix_group"
|
||||
:placeholder="__('Matrix Group')"
|
||||
|
||||
@@ -117,6 +117,17 @@
|
||||
</x-button>
|
||||
@endif
|
||||
</div>
|
||||
<div>
|
||||
@if($meetup->simplex)
|
||||
<x-button
|
||||
target="_blank"
|
||||
:href="$meetup->simplex"
|
||||
secondary lg class="mt-4 whitespace-nowrap">
|
||||
<i class="fa fa-thin fa-external-link mr-2"></i>
|
||||
{{ __('SimpleX') }}
|
||||
</x-button>
|
||||
@endif
|
||||
</div>
|
||||
<div>
|
||||
@if($meetup->matrix_group)
|
||||
<x-button
|
||||
|
||||
@@ -26,6 +26,15 @@
|
||||
{{ __('Telegram-Link') }}
|
||||
</x-button>
|
||||
@endif
|
||||
@if($meetup->simplex)
|
||||
<x-button
|
||||
target="_blank"
|
||||
:href="$meetup->simplex"
|
||||
primary lg class="mt-4 whitespace-nowrap">
|
||||
<i class="fa fa-thin fa-external-link mr-2"></i>
|
||||
{{ __('SimpleX-Link') }}
|
||||
</x-button>
|
||||
@endif
|
||||
@if($meetup->webpage)
|
||||
<x-button
|
||||
target="_blank"
|
||||
|
||||
Reference in New Issue
Block a user