Files
thetempusproject/app/plugins/notifications/views/list.html
Joey Kimsey 5e621883ff Various changes
mobile-friendly ui updates
admin user-edit bugfix
file cleanup
added searchFields
add blog search
remove unused code
add maintenance mode config
2025-02-02 02:16:43 -05:00

41 lines
1.4 KiB
HTML

<div class="m-2 m-lg-4">
<div class="col-12 mx-5 col-sm-10 col-lg-8 mx-auto p-4 rounded shadow-sm context-main-bg">
<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="3" class="text-center context-main">
No Notifications
</td>
</tr>
{/ALT}
</tbody>
</table>
</div>
</div>
</div>
</div>