summaryrefslogtreecommitdiffstats
path: root/views/elements/mangatable.html.php
blob: 5d016f3cb345dc14f3ba11300d83949f4269efc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<table>
<tr>
	<th>Title</th>
	<th>Date</th>
	<th style="width: 200px">Type</th>
</tr>
<?php foreach ($manga as $m): ?>
	<tr>
		<td>
			<a href="/manga/view/<?= $m->special_id ?>"><?= $m->title ?></a>
			<?php if (isset($m->foreign_titles) || isset($m->alternative_titles)): ?>
				<span class="alt_titles">
				<?php if (isset($m->foreign_titles)): ?>
					<?= $m->foreign_titles[0] ?>
				<?php endif ?>
				<?php if (isset($m->alternative_titles)): ?>
					&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
					<?= $m->alternative_titles[0] ?>
				<?php endif ?>
				</span>
			<?php endif ?>
		</td>
		<td>
			<?= $m->publish_period ?>
		</td>
		<td>
			<?= $m->author ?>
		</td>
	</tr>
<?php endforeach ?>
</table>