<?php 
$this->placeholder('breadcrumb')->set('<a href="/reports.php">Reports</a> >'." ".$this->name);
$this->placeholder("itemDiv")->set("<h2>$this->name</h2>");
?>

<?php if (!empty($this->keyName)) {
        if ($this->isDownload == 'Y') { ?>
            <br /><br />
            <h5>Your report is ready. Please click <a href="/reports/export?saved_report_id=<?=$this->savedReportId?>" target="_blank">here</a> to download</h5></li>
    <?php } else { ?>
        <div id="itemDiv">
            <ul id="itemInfo">
                <li><b>Export to</b> <a href="/reports/export?saved_report_id=<?=$this->savedReportId?>" title="Export Report" target="_blank"><img src="/images/excel.gif" border="0" alt="Excel" align="absmiddle" /></a></li>
            </ul>
        </div>
        <?php
            if ($stream = fopen('s3://'.$this->bucketName.'/'.$this->keyName, 'r')) {
                while (!feof($stream)) {
                    // Read 1024 bytes from the stream
                    echo fread($stream, 1024);
                }
                fclose($stream);
            }
        }
    } else {
        echo '<span class="floatClear"></span>';
        echo '<h5>Report is not ready yet.</h5><br /><br /><br />';
    }
?>