-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GEDCOM Export/Import - Prepare interfaces
- Loading branch information
Showing
12 changed files
with
253 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,85 @@ | ||
<div> | ||
<x-under-construction /> | ||
<x-form-section submit="exportTeam"> | ||
<x-slot name="title"> | ||
<div class="dark:text-gray-400"> | ||
{{ __('team.team_details') }} | ||
</div> | ||
</x-slot> | ||
|
||
<x-slot name="description"> | ||
<div class="dark:text-gray-100"> | ||
{{ __('gedcom.gedcom_export') }} | ||
</div> | ||
|
||
<div> | ||
<br /> | ||
<hr class="my-2 h-0.5 border-t-0 bg-neutral-600 dark:bg-neutral-400 opacity-100 dark:opacity-75" /> | ||
<x-under-construction /> | ||
</div> | ||
</x-slot> | ||
|
||
<x-slot name="form" enctype="multipart/form-data"> | ||
<div class="col-span-6"> | ||
<x-label value="{{ __('team.owner') }} :" /> | ||
|
||
<div class="flex items-center mt-2"> | ||
<img class="object-cover w-12 h-12 rounded-full" src="{{ $this->user->profile_photo_url }}" alt="{{ $this->user->name }}"> | ||
|
||
<div class="leading-tight ms-4"> | ||
<div class="text-sm text-gray-700">{{ $this->user->name }}</div> | ||
<div class="text-sm text-gray-700">{{ $this->user->email }}</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-span-6"> | ||
<hr class="my-2 h-0.5 border-t-0 bg-neutral-600 dark:bg-neutral-400 opacity-100 dark:opacity-75" /> | ||
</div> | ||
|
||
{{-- filename --}} | ||
<div class="col-span-6"> | ||
<x-ts-input id="filename" type="text" class="block w-full mt-1" wire:model="filename" label="{{ __('gedcom.filename') }} : *" required readonly /> | ||
|
||
<x-input-error for="name" class="mt-2" /> | ||
</div> | ||
|
||
{{-- format --}} | ||
<div class="col-span-6"> | ||
<x-ts-select.styled wire:model.live="format" id="format" :options="$formats" select="label:label|value:value" label="{{ __('gedcom.format') }} : *" required /> | ||
|
||
<x-input-error for="format" class="mt-2" /> | ||
</div> | ||
|
||
{{-- encoding --}} | ||
<div class="col-span-6"> | ||
<x-ts-select.styled wire:model.live="encoding" id="encoding" :options="$encodings" select="label:label|value:value" label="{{ __('gedcom.character_encoding') }} : *" required /> | ||
|
||
<x-input-error for="encoding" class="mt-2" /> | ||
</div> | ||
|
||
{{-- line endings --}} | ||
<div class="col-span-6"> | ||
<x-label for="line_endings" class="mr-5" value="{{ __('gedcom.line_endings') }} : *" /> | ||
|
||
<div class="flex"> | ||
<div class="mt-3 mb-[0.125rem] mr-4 inline-block min-h-[1.5rem] pl-[1.5rem]"> | ||
<x-ts-radio color="primary" wire:model="line_endings" name="line_endings" id="line_ending_windows" value="windows" label="{{ __('gedcom.line_endings_windows') }}" /> | ||
</div> | ||
|
||
<div class="mt-3 mb-[0.125rem] mr-4 inline-block min-h-[1.5rem] pl-[1.5rem]"> | ||
<x-ts-radio color="primary" wire:model="line_endings" name="line_endings" id="line_ending_unix" value="unix" label="{{ __('gedcom.line_endings_unix') }}" /> | ||
</div> | ||
</div> | ||
|
||
<x-input-error for="line_endings" class="mt-2" /> | ||
</div> | ||
</x-slot> | ||
|
||
<x-slot name="actions"> | ||
<x-ts-button type="submit" color="primary"> | ||
<x-ts-icon icon="download" class="inline-block size-5" /> | ||
{{ __('app.download') }} | ||
</x-ts-button> | ||
</x-slot> | ||
</x-form-section> | ||
</div> |
Oops, something went wrong.