* initial commit
This commit is contained in:
14
templates/app/home-page.phtml
Normal file
14
templates/app/home-page.phtml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php $this->layout('layout::default', ['title' => 'Support Cases (based on JIRA data)']) ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div id='chart-container' style='width: 1258px; height: 755px; margin: 0 auto'></div>
|
||||
<div style='display:none'>
|
||||
<?php foreach ($chartRows as $rowDate => $chartRow): ?>
|
||||
Week: <span class='week'><?php
|
||||
list($year,$week) = explode('_', $rowDate);
|
||||
echo $week; ?></span> Created: <span class='inflow'><?=$chartRow->getIn()?></span>, Resolved: <span class='outflow'>-<?=$chartRow->getOut()?></span>, Sum: <span class='sum'><?=$chartRow->getOpen()?></span><br/>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user