37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<main>
|
|
<?php if (empty($sections)): ?>
|
|
<h3>There's nothing here!</h3>
|
|
<?php else: ?>
|
|
<?php foreach ($sections as $name => $items): ?>
|
|
<h2><?= $name ?></h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Rating</th>
|
|
<th>Chapters</th>
|
|
<th>Volumes</th>
|
|
<th>Type</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($items as $item): ?>
|
|
<tr id="manga-<?= $item['id'] ?>">
|
|
<td class="align_left">
|
|
<a href="<?= $item['manga']['url'] ?>">
|
|
<?= $item['manga']['title'] ?>
|
|
</a>
|
|
<?= ( ! is_null($item['manga']['alternate_title'])) ? " · " . $item['manga']['alternate_title'] : "" ?>
|
|
</td>
|
|
<td><?= $item['user_rating'] ?> / 10</td>
|
|
<td><?= $item['chapters']['read'] ?> / <?= $item['chapters']['total'] ?></td>
|
|
<td><?= $item['volumes']['read'] ?> / <?= $item['volumes']['total'] ?></td>
|
|
<td><?= $item['manga']['type'] ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|
|
</main>
|
|
<script src="<?= $urlGenerator->asset_url('js.php?g=table') ?>"></script>
|