66 lines
2.1 KiB
PHP
66 lines
2.1 KiB
PHP
<?php use function Aviat\AnimeClient\renderTemplate ?>
|
|
<?php if ($auth->isAuthenticated()): ?>
|
|
<main>
|
|
<h2>Edit Anime Collection Item</h2>
|
|
<form action="<?= $action_url ?>" method="post">
|
|
<table class="invisible form">
|
|
<tbody>
|
|
<tr>
|
|
<td rowspan="6" class="align-center">
|
|
<?= $helper->picture("images/anime/{$item['hummingbird_id']}-original.webp", "jpg", [], ["width" => "390"]) ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="align-right"><label for="title">Title</label></td>
|
|
<td class="align-left">
|
|
<input type="text" id="title" name="title" value="<?= $item['title'] ?>" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="align-right"><label for="alternate_title">Alternate Title</label></td>
|
|
<td class="align-left">
|
|
<input type="text" id="alternate_title" name="alternate_title" value="<?= $item['alternate_title'] ?>"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="align-right"><label for="media_id">Media</label></td>
|
|
<td class="align-left">
|
|
<?php include 'media-select-list.php' ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="notes">Notes</label></td>
|
|
<td><textarea id="notes" name="notes"><?= $escape->html($item['notes']) ?></textarea></td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td>
|
|
<?php if($action === 'Edit'): ?>
|
|
<input type="hidden" name="hummingbird_id" value="<?= $item['hummingbird_id'] ?>" />
|
|
<?php endif ?>
|
|
<button type="submit">Save</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
<form class="js-delete" action="<?= $url->generate($collection_type . '.collection.delete') ?>" method="post">
|
|
<fieldset>
|
|
<legend>Danger Zone</legend>
|
|
<table class="form invisible">
|
|
<tbody>
|
|
<tr>
|
|
<td class="danger">
|
|
<strong>Permanently</strong> remove this list item and <strong>all</strong> its data?
|
|
</td>
|
|
<td>
|
|
<input type="hidden" value="<?= $item['hummingbird_id'] ?>" name="hummingbird_id" />
|
|
<button type="submit" class="danger">Delete Entry</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
</form>
|
|
</main>
|
|
<?php endif ?>
|