37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php if (is_logged_in()): ?>
|
|
<main>
|
|
<form action="<?= $action_url ?>" method="post">
|
|
<dl>
|
|
<h2><?= $item['title'] ?></h2>
|
|
<h3><?= $item['alternate_title'] ?></h3>
|
|
|
|
<dt><label for="media_id">Media</label></dt>
|
|
<dd>
|
|
<select name="media_id" id="media_id">
|
|
<?php foreach($media_items as $id => $name): ?>
|
|
<option <?= $item['media_id'] == $id ? 'selected="selected"' : '' ?> value="<?= $id ?>"><?= $name ?></option>
|
|
<?php endforeach ?>
|
|
</select>
|
|
</dd>
|
|
|
|
<dt><label for="notes">Notes</label></dt>
|
|
<dd><textarea id="notes" name="notes"><?= $item['notes'] ?></textarea></dd>
|
|
|
|
<dt> </dt>
|
|
<dd>
|
|
<?php if($action === 'Edit'): ?>
|
|
<input type="hidden" name="hummingbird_id" value="<?= $item['hummingbird_id'] ?>" />
|
|
<?php endif ?>
|
|
<button type="submit">Save</button>
|
|
</dd>
|
|
</dl>
|
|
</form>
|
|
</main>
|
|
<template id="show_list">
|
|
<article class="media">
|
|
<div class="name"><label><input type="radio" name="id" value="{{:id}}" /> <span>{{:title}}<br />{{:alternate_title}}</span></label></div>
|
|
<img src="{{:cover_image}}" alt="{{:title}}" />
|
|
</article>
|
|
</template>
|
|
<script src="<?= $config->asset_url('js.php?g=collection&debug=1') ?>"></script>
|
|
<?php endif ?>
|