mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00

- create markdown-write-preview + markdown-preview webcomponents using lit - create form_markdown_editor helper form component - simplify form_dropdown and form_multiselect components - fix partner fields display fixes #93, #94, #120
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?= $this->extend('admin/_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('Contributor.add_contributor', [$podcast->title]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('Contributor.add_contributor', [$podcast->title]) ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?= form_open(route_to('contributor-add', $podcast->id), [
|
|
'class' => 'flex flex-col max-w-sm',
|
|
]) ?>
|
|
<?= csrf_field() ?>
|
|
|
|
<?= form_label(lang('Contributor.form.user'), 'user') ?>
|
|
<?= form_dropdown('user', $userOptions, [old('user', '')], [
|
|
'id' => 'user',
|
|
'class' => 'form-select mb-4',
|
|
'required' => 'required',
|
|
'placeholder' => lang('Contributor.form.user_placeholder')
|
|
]) ?>
|
|
|
|
<?= form_label(lang('Contributor.form.role'), 'role') ?>
|
|
<?= form_dropdown('role', $roleOptions, [old('role', '')], [
|
|
'id' => 'role',
|
|
'class' => 'form-select mb-4',
|
|
'required' => 'required',
|
|
'placeholder' => lang('Contributor.form.role_placeholder')
|
|
]) ?>
|
|
|
|
<?= button(
|
|
lang('Contributor.form.submit_add'),
|
|
'',
|
|
['variant' => 'primary'],
|
|
['type' => 'submit', 'class' => 'self-end'],
|
|
) ?>
|
|
|
|
<?= form_close() ?>
|
|
|
|
<?= $this->endSection() ?>
|