Some clean-up
This commit is contained in:
parent
bbc12f2b4a
commit
ed5fb3d346
|
@ -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
|
||||||
|
|
|
@ -13,17 +13,17 @@
|
||||||
<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>
|
||||||
<td><%= $moderator->{'email_addr' } %></td>
|
<td><%= $moderator->{'email_addr' } %></td>
|
||||||
<td><%= $moderator->{'creation_date' } %></td>
|
<td><%= $moderator->{'creation_date' } %></td>
|
||||||
<td><%= $moderator->{'last_login_date'} %></td>
|
<td><%= $moderator->{'last_login_date'} %></td>
|
||||||
<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>
|
||||||
|
|
Loading…
Reference in a new issue