Various changes

mobile-friendly ui updates
admin user-edit bugfix
file cleanup
added searchFields
add blog search
remove unused code
add maintenance mode config
This commit is contained in:
Joey Kimsey
2025-01-30 13:11:02 -05:00
parent b5996dc7db
commit 5e621883ff
106 changed files with 1154 additions and 787 deletions

View File

@ -1,6 +1,6 @@
<h2>Outbox</h2>
<form action="{ROOT_URL}messages/delete" method="post">
<table class="table table-striped">
<table class="table table-striped text-center">
<thead>
<tr>
<th style="width: 20%">To</th>
@ -15,10 +15,10 @@
<tbody>
{LOOP}
<tr>
<td><a href="{ROOT_URL}home/profile/{userTo}">{userTo}</a></td>
<td><a href="{ROOT_URL}messages/view/{ID}">{subject}</a></td>
<td><a href="{ROOT_URL}home/profile/{userTo}" class="text-decoration-none">{userToPretty}</a></td>
<td><a href="{ROOT_URL}messages/view/{ID}" class="text-decoration-none">{subject}</a></td>
<td>{DTC date}{sent}{/DTC}</td>
<td><a href="{ROOT_URL}messages/delete/{ID}">Delete</a></td>
<td><a href="{ROOT_URL}messages/delete/{ID}" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></a></td>
<td>
<input type="checkbox" value="{ID}" name="F_[]">
</td>
@ -33,5 +33,5 @@
{/ALT}
</tbody>
</table>
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger">Delete</button>
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></button>
</form>