<meta charset="utf-8">
    <meta name="reports_info" content="Info on how to acheive dial reports.">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="css/normalize.css" rel="stylesheet" media="all">
    <link href="css/styles.css" rel="stylesheet" media="all">
</head>
<body>
    <header id="header" role="banner">
    </header>
    <div id="content" class="wrap">
        <main role="main">
            <section>
                <article id="main_article">
                <?php 
if (isset($report)) {
    $report->render();
    $report->csv_link();
} else {
    echo "<p>Hold control to select multiple items</p>";
    $mform->display();
}
?>
                </article>
            </section>
        </main>
    </div>
    <footer role="contentinfo">
        <?php 
echo $OUTPUT->footer();
?>
    </footer>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="../css/normalize.css" rel="stylesheet" media="all">
    <link href="../css/styles.css" rel="stylesheet" media="all">
</head>
<body>
    <header id="header" role="banner">
    </header>
    <div id="content" class="wrap">
        <main role="main">
            <section>
                <article id="main_article">
				<?php 
if (empty($dept_report)) {
    echo "An error occurred generating the summary.";
} else {
    $dept_report->render();
}
?>
	
                </article>
            </section>
        </main>
    </div>
    <footer role="contentinfo">
        <?php 
echo $OUTPUT->footer();
?>
    </footer>
</body>
</html>