reworked dashboard with table summary
This commit is contained in:
@ -8,11 +8,6 @@
|
||||
{% block footer %}{% endblock %}
|
||||
{% block main %}
|
||||
<div class="by-range">
|
||||
<div class="template row">
|
||||
<div class="name"></div>
|
||||
<div class="duration"></div>
|
||||
</div>
|
||||
<div class="template no-data">No Data</div>
|
||||
<div class="controls">
|
||||
<div id="month-sel" class="group">
|
||||
<button id="prev-month"><</button>
|
||||
@ -29,6 +24,49 @@
|
||||
<option value="weekly">Weekly</option>
|
||||
</select>
|
||||
</div>
|
||||
<div id="list"></div>
|
||||
<div class="tables">
|
||||
<table id="headers-table">
|
||||
<tr class="project-names">
|
||||
<th colspan="2"></th>
|
||||
</tr>
|
||||
<tr class="project-nums">
|
||||
<th colspan="2">N° SageX</th>
|
||||
</tr>
|
||||
<tr class="clocking">
|
||||
<th>Total imputed</th>
|
||||
<td class="total-clocking"></td>
|
||||
</tr>
|
||||
<tr class="total-durations">
|
||||
<th>Total</th>
|
||||
<td class="total-duration"></td>
|
||||
</tr>
|
||||
<tr class="working-time-ratios">
|
||||
<th>% working time</th>
|
||||
<td class="working-time-ratio"></td>
|
||||
</tr>
|
||||
<tr class="imputed-time-ratios">
|
||||
<th>% imputed time</th>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr class="sagex-hours">
|
||||
<th>Hours on SageX (theoretical)</th>
|
||||
<td class="sagex-hours-total"></td>
|
||||
</tr>
|
||||
<tr class="real-sagex-hours">
|
||||
<th>Hours on SageX (real)</th>
|
||||
<td class="sagex-hours-diff"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table id="projects-table">
|
||||
<tr class="project-names"></tr>
|
||||
<tr class="project-nums"></tr>
|
||||
<tr class="clocking"></tr>
|
||||
<tr class="total-durations"></tr>
|
||||
<tr class="working-time-ratios"></tr>
|
||||
<tr class="imputed-time-ratios"></tr>
|
||||
<tr class="sagex-hours"></tr>
|
||||
<tr class="real-sagex-hours"></tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user