33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
|
|
<div class="container py-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<legend>Notifications</legend>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width: 90%"></th>
|
|
<th style="width: 5%"></th>
|
|
<th style="width: 5%"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{LOOP}
|
|
<tr {unseenBadge}>
|
|
<td>{notification}</td>
|
|
<td><a href="{ROOT_URL}notifications/markRead/{ID}" class="btn btn-sm btn-primary"><i class="fa fa-fw fa-upload"></i></a></td>
|
|
<td><a href="{ROOT_URL}notifications/delete/{ID}" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></a></td>
|
|
</tr>
|
|
{/LOOP}
|
|
{ALT}
|
|
<tr>
|
|
<td colspan="7">
|
|
No Notifications
|
|
</td>
|
|
</tr>
|
|
{/ALT}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div> |