1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

Merge pull request #682 from Zankaria/appeal-count

Show ban appeal count in bold on mod dashboard
This commit is contained in:
Lorenzo Yario 2024-02-26 19:41:40 -08:00 committed by GitHub
commit 59c9e1771a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 508 additions and 505 deletions

View File

@ -104,6 +104,9 @@ function mod_dashboard() {
$query = query('SELECT COUNT(*) FROM ``reports``') or error(db_error($query));
$args['reports'] = $query->fetchColumn();
$query = query('SELECT COUNT(*) FROM ``ban_appeals``') or error(db_error($query));
$args['appeals'] = $query->fetchColumn();
if ($mod['type'] >= ADMIN && $config['check_updates']) {
if (!$config['version'])
error(_('Could not find current version! (Check .installed)'));
@ -3020,4 +3023,3 @@ function mod_debug_apc() {
mod_page(_('Debug: APC'), $config['file_mod_debug_apc'], array('cached_vars' => $cached_vars));
}

View File

@ -91,7 +91,9 @@
<li><a href="?/bans">{% trans 'Ban list' %}</a></li>
{% endif %}
{% if config.ban_appeals and mod|hasPermission(config.mod.view_ban_appeals) %}
{% if appeals > 0 %}<strong>{% endif %}
<li><a href="?/ban-appeals">{% trans 'Ban appeals' %}</a></li>
{% if appeals > 0 %}</strong>{% endif %}
{% endif %}
{% if mod|hasPermission(config.mod.manageusers) %}
<li><a href="?/users">{% trans 'Manage users' %}</a></li>
@ -177,4 +179,3 @@
<li><a href="?/logout/{{ logout_token }}">{% trans 'Logout' %}</a></li>
</ul>
</fieldset>