get_string(SetupConfig::TITLE);
        $page->set_title($page_title);
        $page->set_heading($page_title);
        $page->disable_left();
        $page->add_block(new Block(null, $this->build_upload_box(), "main", 0));
        $page->add_block(new Block(null, "
", "main", 80));
        $this->display_paginator($page, "comment/list", null, $page_number, $total_pages);
        // parts for each image
        $position = 10;
        foreach ($images as $pair) {
            $image = $pair[0];
            $comments = $pair[1];
            $h_filename = html_escape($image->filename);
            $h_filesize = to_shorthand_int($image->filesize);
            $w = $image->width;
            $h = $image->height;
            $comment_html = "";
            $comment_id = 0;
            foreach ($comments as $comment) {
                $this->inner_id = $comment_id++;
                $comment_html .= $this->comment_to_html($comment, false);
            }
            $html  = " 
";
            $html .= "File: id}")."\">$h_filename - ($h_filesize, {$w}x{$h}) - ";
            $html .= html_escape($image->get_tag_list());
            $html .= "";
            $html .=   "
" . $this->build_thumb_html($image) . "
";
            $html .=   "";
            $html .= "
| >> | ".
                " " .
                "$h_userlink$h_del $h_date No.$i_comment_id $h_reply $h_comment | 
";
        }
    }
}