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

- update CI process to include quality stage (tests + code review) - add captainhook to install git pre-commit & pre-push hooks - remove .devcontainer Dockerfile to use project's docker-compose services: all services can now be started automatically using vscode - update docs/setup-development.md
54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?= $this->extend('admin/_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('Episode.unpublish') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('Episode.unpublish') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<?= form_open(route_to('episode-unpublish', $podcast->id, $episode->id), [
|
|
'class' => 'flex flex-col max-w-xl mx-auto',
|
|
]) ?>
|
|
|
|
<p class="flex max-w-xl p-2 mb-4 font-semibold text-red-900 bg-red-100 border border-red-300"><?= icon(
|
|
'alert',
|
|
'mr-4 text-2xl flex-shrink-0 text-red-500',
|
|
) . lang('Episode.unpublish_form.disclaimer') ?></p>
|
|
|
|
<label for="understand" class="inline-flex items-center mb-4">
|
|
<?= form_checkbox(
|
|
[
|
|
'id' => 'understand',
|
|
'name' => 'understand',
|
|
'class' => 'text-pine-700',
|
|
'required' => 'required',
|
|
],
|
|
'yes',
|
|
old('understand', false),
|
|
) ?>
|
|
<span class="ml-2"><?= lang('Episode.unpublish_form.understand') ?></span>
|
|
</label>
|
|
|
|
<div class="self-end">
|
|
<?= button(
|
|
lang('Common.cancel'),
|
|
route_to('episode-view', $podcast->id, $episode->id),
|
|
) ?>
|
|
|
|
<?= button(
|
|
lang('Episode.unpublish_form.submit'),
|
|
'',
|
|
['variant' => 'danger'],
|
|
['type' => 'submit'],
|
|
) ?>
|
|
</div>
|
|
|
|
|
|
<?= form_close() ?>
|
|
|
|
<?= $this->endSection() ?>
|