HummingBirdAnimeClient/app/views/collection/list.php

58 lines
1.8 KiB
PHP
Raw Normal View History

<main>
2017-02-15 16:30:14 -05:00
<?php if ($auth->isAuthenticated()): ?>
<a class="bracketed" href="<?= $url->generate($collection_type . '.collection.add.get') ?>">Add Item</a>
2016-01-04 10:53:03 -05:00
<?php endif ?>
<?php if (empty($sections)): ?>
<h3>There's nothing here!</h3>
<?php else: ?>
<?php $i = 0; ?>
<div class="tabs">
<?php foreach ($sections as $name => $items): ?>
<input <?= $i === 0 ? 'checked="checked"' : '' ?> type="radio" id="collection-tab-<?= $i ?>" name="collection-tabs" />
<label for="collection-tab-<?= $i ?>"><?= $name ?></label>
<div class="content">
<h2><?= $name ?></h2>
<table>
<thead>
<tr>
2017-02-15 16:30:14 -05:00
<?php if($auth->isAuthenticated()): ?>
2016-01-04 10:53:03 -05:00
<th>Actions</th>
<?php endif ?>
<th>Title</th>
<th>Episode Count</th>
<th>Episode Length</th>
<th>Show Type</th>
<th>Age Rating</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<?php foreach($items as $item): ?>
<tr>
2017-02-15 16:30:14 -05:00
<?php if($auth->isAuthenticated()): ?>
2016-01-04 10:53:03 -05:00
<td>
<a class="bracketed" href="<?= $url->generate($collection_type . '.collection.edit.get', ['id' => $item['hummingbird_id']]) ?>">Edit</a>
2016-01-04 10:53:03 -05:00
</td>
<?php endif ?>
<td class="align_left">
2017-03-30 16:16:40 -04:00
<a href="<?= $url->generate('anime.details', ['id' => $item['slug']]) ?>">
<?= $item['title'] ?>
</a>
<?= ( ! empty($item['alternate_title'])) ? " <br /><small> " . $item['alternate_title'] . "</small>" : "" ?>
</td>
<td><?= $item['episode_count'] ?></td>
<td><?= $item['episode_length'] ?></td>
<td><?= $item['show_type'] ?></td>
<td><?= $item['age_rating'] ?></td>
<td class="align_left"><?= $item['notes'] ?></td>
</tr>
<?php endforeach ?>
</tbody>
</table>
</div>
<?php $i++ ?>
<?php endforeach ?>
</div>
<?php endif ?>
</main>
2017-02-15 15:56:10 -05:00
<script defer="defer" src="<?= $urlGenerator->assetUrl('js.php/g/table') ?>"></script>