Timothy J. Warren
4a91a5cb5d
* Allow editing title and alternate title * Show list of genres on list view of collection
28 lines
823 B
PHP
28 lines
823 B
PHP
<main class="media-list">
|
|
<?php if ($auth->isAuthenticated()): ?>
|
|
<a class="bracketed" href="<?= $url->generate('anime.add.get') ?>">Add Item</a>
|
|
<?php endif ?>
|
|
<?php if (empty($sections)): ?>
|
|
<h3>There's nothing here!</h3>
|
|
<?php else: ?>
|
|
<?php foreach ($sections as $name => $items): ?>
|
|
<?php if (empty($items)): ?>
|
|
<section class="status">
|
|
<h2><?= $escape->html($name) ?></h2>
|
|
<h3>There's nothing here!</h3>
|
|
</section>
|
|
<?php else: ?>
|
|
<section class="status">
|
|
<h2><?= $escape->html($name) ?></h2>
|
|
<section class="media-wrap">
|
|
<?php foreach($items as $item): ?>
|
|
<?php if ($item['private'] && ! $auth->isAuthenticated()) continue; ?>
|
|
<?php include __DIR__ . '/cover-item.php' ?>
|
|
<?php endforeach ?>
|
|
</section>
|
|
</section>
|
|
<?php endif ?>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|
|
</main>
|