add report klan books

This commit is contained in:
Your Name
2022-12-04 17:43:20 +03:00
parent 62fa3ea592
commit 4668259ae8
3 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<html>
<body>
<style>
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700');
</style>
<h1>Книги в подписке</h1>
<table>
<?foreach ($books as $book):?>
<tr>
<td><?=$book['price_id']?></td>
<td><?=$book['pricename']?></td>
<?if ($book['author_id'] > 0 ):?>
<td><?=$book['author']?></td>
<?elseif ($book['priceauthor'] !== ''):?>
<td><?=$book['priceauthor']?></td>
<?endif?>
</tr>
<?endforeach?>
</table>
</body>
</html>