<?php
$dataTable = '<table>
        <tr>
            <th>Date Range:</th>
            <td><em>' . $this->reportCriteria['startdate'] . '</em> to <em>'.$this->reportCriteria['enddate'].'</em></td>
            <th>Encoder:</th>
            <td><em>'.$this->reportCriteria['encoder'].'</em></td>
        </tr>
    </table>
    <table border=1>
        <tr>
            <th>DMS</th>
            <th>Releases</th>
            <th>Tracks</th>
        </tr>
    ';
?>
<tbody>
    <?php $dataTable .= $this->partial('warehouse/_ddcountrecords.phtml', $this);?>
</tbody>
<?php
$dataTable .= '</table>';
echo $dataTable;
?>