Version 5.1 - All the GraphQL #32
@ -68,7 +68,15 @@
|
|||||||
|
|
||||||
<?php if ($item['reread'] > 0): ?>
|
<?php if ($item['reread'] > 0): ?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div>Reread <?= $item['reread'] ?> time(s)</div>
|
<?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>
|
</div>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
|
@ -53,8 +53,14 @@
|
|||||||
<td><?= $item['volumes']['total'] ?></td>
|
<td><?= $item['volumes']['total'] ?></td>
|
||||||
<td>
|
<td>
|
||||||
<ul>
|
<ul>
|
||||||
<?php if ($item['reread'] > 0): ?>
|
<?php if ($item['reread'] == 1): ?>
|
||||||
<li>Reread <?= $item['reread'] ?> time(s)</li>
|
<li>Reread once</li>
|
||||||
|
<?php elseif ($item['reread'] == 2): ?>
|
||||||
|
<li>Reread twice</li>
|
||||||
|
<?php elseif ($item['reread'] == 3): ?>
|
||||||
|
<li>Reread thrice</li>
|
||||||
|
<?php elseif ($item['reread'] > 3): ?>
|
||||||
|
<li>Reread <?= $item['reread'] ?> times</li>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php foreach(['rereading'] as $attr): ?>
|
<?php foreach(['rereading'] as $attr): ?>
|
||||||
<?php if($item[$attr]): ?>
|
<?php if($item[$attr]): ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user