38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<legend class="text-center">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 class=" context-main">{notification}</td>
|
|
<td>
|
|
{markReadLink}
|
|
</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" class=" context-main">
|
|
No Notifications
|
|
</td>
|
|
</tr>
|
|
{/ALT}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div> |