Some clean-up

This commit is contained in:
swaggboi 2024-06-26 01:11:53 -04:00
parent bbc12f2b4a
commit ed5fb3d346
2 changed files with 11 additions and 18 deletions

View File

@ -60,13 +60,6 @@ tests locally:
## TODOs ## TODOs
1. Test JS with LibreJS or something like that (I don't like RMS I
just want free JS!!)
## Crazy future ideas
### (Lord knows there's TODOs I could be working on...)
1. Is `remark_tally` counting hidden remarks? Tried to add a `WHERE 1. Is `remark_tally` counting hidden remarks? Tried to add a `WHERE
NOT hidden_status` but that returns null, probably need a different NOT hidden_status` but that returns null, probably need a different
`JOIN` which may not be worth the trouble/processing `JOIN` which may not be worth the trouble/processing

View File

@ -13,7 +13,7 @@
<th>Locked?</th> <th>Locked?</th>
<th>Admin?</th> <th>Admin?</th>
</tr> </tr>
<% for my $moderator (@{$moderators}) { %> <% for my $moderator (@{$moderators}) { =%>
<tr> <tr>
<td><%= $moderator->{'id' } %></td> <td><%= $moderator->{'id' } %></td>
<td><%= $moderator->{'name' } %></td> <td><%= $moderator->{'name' } %></td>
@ -23,7 +23,7 @@
<td><%= $moderator->{'lock_status' } %></td> <td><%= $moderator->{'lock_status' } %></td>
<td><%= $moderator->{'admin_status' } %></td> <td><%= $moderator->{'admin_status' } %></td>
</tr> </tr>
<% } %> <% } =%>
</table> </table>
<% } =%> <% } =%>
</main> </main>