require("setup_header.php");
?>
$_GET['status'] = (empty($_GET['status'])) ? 1 : $_GET['status'];
$_GET['size'] = (empty($_GET['size'])) ? 50 : $_GET['size'];
$context = array(
"method" => $_GET['method'],
"order" => $_GET['order'],
"show_pagination" => true,
"show_search" => true
);
$context['method'] = $_GET['method'];
$context['order'] = $_GET['order'];
common_main_header::get_header();
$jobs_list = new list_logs($context);
$jobs_list->get_data()->show();
?>