34 lines
684 B
PHP
Executable file
34 lines
684 B
PHP
Executable file
<?=$javascript->link('reports');?>
|
|
|
|
<h2>Book 1 - Reports</h2>
|
|
|
|
|
|
<div id="years">
|
|
<ul class="years">
|
|
<? foreach($Fyears as $year => $count):
|
|
$lastYear = $year - 1;
|
|
?>
|
|
|
|
<?if($year != 1970 && $year != 0):?>
|
|
<li id="<?=$year?>" class="year"><?=$lastYear?> - <?=$year?> <span class="count">(<?=$count?>)</span></li>
|
|
<?else:?>
|
|
<li id="0" class="year">No Date <span class="count">(<?=$count?>)</span></li>
|
|
<?endif;?>
|
|
|
|
<?endforeach;?>
|
|
</ul>
|
|
|
|
<span class="whichYear"></span>
|
|
|
|
<ul class="months">
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="scrollHorizontal">
|
|
<div id="reports">
|
|
</div>
|
|
</div>
|
|
|
|
<span id="modelString" style="display: none;">/jobs</span>
|