74 lines
2.3 KiB
PHP
74 lines
2.3 KiB
PHP
|
<article class="media" data-kitsu-id="<?= $item['id'] ?>" data-mal-id="<?= $item['mal_id'] ?>">
|
||
|
<?php if ($auth->isAuthenticated()): ?>
|
||
|
<div class="edit-buttons" hidden>
|
||
|
<button class="plus-one-chapter">+1 Chapter</button>
|
||
|
<?php /* <button class="plus-one-volume">+1 Volume</button> */ ?>
|
||
|
</div>
|
||
|
<?php endif ?>
|
||
|
<?= $helper->picture("images/manga/{$item['manga']['id']}.webp") ?>
|
||
|
<div class="name">
|
||
|
<a href="<?= $url->generate('manga.details', ['id' => $item['manga']['slug']]) ?>">
|
||
|
<?= $escape->html($item['manga']['title']) ?>
|
||
|
<?php foreach($item['manga']['titles'] as $title): ?>
|
||
|
<br /><small><?= $title ?></small>
|
||
|
<?php endforeach ?>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="table">
|
||
|
<?php if ($auth->isAuthenticated()): ?>
|
||
|
<div class="row">
|
||
|
<span class="edit">
|
||
|
<a class="bracketed"
|
||
|
title="Edit information about this manga"
|
||
|
href="<?= $url->generate('edit', [
|
||
|
'controller' => 'manga',
|
||
|
'id' => $item['id'],
|
||
|
'status' => $name
|
||
|
]) ?>">
|
||
|
Edit
|
||
|
</a>
|
||
|
</span>
|
||
|
</div>
|
||
|
<?php endif ?>
|
||
|
<div class="row">
|
||
|
<div><?= $item['manga']['type'] ?></div>
|
||
|
<div class="user-rating">Rating: <?= $item['user_rating'] ?> / 10</div>
|
||
|
</div>
|
||
|
|
||
|
<?php if ($item['rereading']): ?>
|
||
|
<div class="row">
|
||
|
<?php foreach(['rereading'] as $attr): ?>
|
||
|
<?php if($item[$attr]): ?>
|
||
|
<span class="item-<?= $attr ?>"><?= ucfirst($attr) ?></span>
|
||
|
<?php endif ?>
|
||
|
<?php endforeach ?>
|
||
|
</div>
|
||
|
<?php endif ?>
|
||
|
|
||
|
<?php if ($item['reread'] > 0): ?>
|
||
|
<div class="row">
|
||
|
<?php if ($item['reread'] == 1): ?>
|
||
|
<div>Reread once</div>
|
||
|
<?php elseif ($item['reread'] == 2): ?>
|
||
|
<div>Reread twice</div>
|
||
|
<?php elseif ($item['reread'] == 3): ?>
|
||
|
<div>Reread thrice</div>
|
||
|
<?php else: ?>
|
||
|
<div>Reread <?= $item['reread'] ?> times</div>
|
||
|
<?php endif ?>
|
||
|
</div>
|
||
|
<?php endif ?>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="chapter_completion">
|
||
|
Chapters: <span class="chapters_read"><?= $item['chapters']['read'] ?></span> /
|
||
|
<span class="chapter_count"><?= $item['chapters']['total'] ?></span>
|
||
|
</div>
|
||
|
<?php /* </div>
|
||
|
<div class="row"> */ ?>
|
||
|
<div class="volume_completion">
|
||
|
Volumes: <span class="volume_count"><?= $item['volumes']['total'] ?></span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</article>
|