29 lines
473 B
PHP
29 lines
473 B
PHP
<?=$javascript->link('job_reports');?>
|
|
|
|
<h2>Book 1 - Reports</h2>
|
|
|
|
|
|
<div id="yearMonths">
|
|
<?
|
|
foreach($monthList as $year => $monthArr):
|
|
?>
|
|
<ul class="yearList">
|
|
<li><span class="year"><?=$year?></span>
|
|
<ul class="monthList" id="<?=$year?>">
|
|
<?foreach($monthArr as $month => $job):?>
|
|
<li><span class="month"><?=$month;?></span></li>
|
|
<?endforeach;?>
|
|
</ul>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<?endforeach;?>
|
|
|
|
</div>
|
|
|
|
|
|
<div id="reports">
|
|
|
|
|
|
</div>
|