1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 07:30:10 +01:00

paginate moderation log

This commit is contained in:
Michael Save 2012-04-13 20:57:59 +10:00
parent e92ee2b487
commit d1876a0dd6
3 changed files with 12 additions and 2 deletions

View File

@ -79,7 +79,11 @@ function mod_log($page_no = 1) {
$query->execute() or error(db_error($query));
$logs = $query->fetchAll(PDO::FETCH_ASSOC);
mod_page('Moderation log', 'mod/log.html', array('logs' => $logs));
$query = prepare("SELECT COUNT(*) AS `count` FROM `modlogs`");
$query->execute() or error(db_error($query));
$count = $query->fetchColumn(0);
mod_page('Moderation log', 'mod/log.html', array('logs' => $logs, 'count' => $count));
}
function mod_view_board($boardName, $page_no = 1) {

View File

@ -24,7 +24,7 @@ $pages = array(
'!^$!' => ':?/', // redirect to dashboard
'!^/$!' => 'dashboard', // dashboard
'!^/log$!' => 'log', // modlog
'!^/log/(\d+)/$!' => 'log', // modlog
'!^/log/(\d+)$!' => 'log', // modlog
'!^/confirm/(.+)$!' => 'confirm', // confirm action (if javascript didn't work)

View File

@ -31,3 +31,9 @@
{% endfor %}
</table>
<p class="unimportant" style="text-align:center;word-wrap:break-word">
{% for i in range(0, count / config.mod.modlog_page) %}
<a href="?/log/{{ i + 1 }}">[{{ i + 1 }}]</a>
{% endfor %}
</p>