<?php if ($this->report) { ?>
    <div id="exportReport" style="float: right; margin-bottom: 15px;">
        <b>Export to</b> <a href='#' title='Export Report' class='exportExcel'><img src='/images/excel.gif' border='0' alt='Excel' align='absmiddle' /></a><br>
    </div>
<?php } ?>
<div style="clear: both;"></div>
<div id="reportResult" class="panelContent fullReport">
	<div class='panelSummary'>
		<table class='form full'>
			<tr>
				<th>Date Range:</th>
				<td><em><?php echo $this->reportCriteria['startdate'];?> </em> to <em><?php echo $this->reportCriteria['enddate'];?> </em></td>
				<th>Encoder:</th>
				<td><em><?php echo $this->reportCriteria['encoder'];?> </em></td>
			</tr>
		</table>
	</div>
	<table class='data'>
		<tr>
			<th>DMS</th>
			<th>Releases</th>
			<th>Tracks</th>
		</tr>
		<tbody>
            <?php echo $this->partial('warehouse/_ddcountrecords.phtml', $this);?>
        </tbody>
	</table>
</div>