Kimai time management system (PHP 5.6 / MySQL) with custom extensions: - Budget tracking (ki_budget) - Change request form (ki_changerequest) - Invoice generation (ki_invoice) - Expense tracking (ki_expenses) - Flexi time (ki_flexitime) - Export, admin panel, timesheets, tasks, summary Database: ~900K time entries, 2,000+ users, 439 projects. Config: includes/autoconf.php — localhost/kimai/kimai
41 lines
1.1 KiB
Smarty
41 lines
1.1 KiB
Smarty
{* IMPORTANT NOTE:
|
|
Javascript or jQuery stuff that should run when your extension *has finished loading*
|
|
should sit in an special onload function like this:
|
|
*}
|
|
{literal}
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
summary_ext_onload();
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.mytable {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
margin-bottom:30px;
|
|
}
|
|
.myth {
|
|
text-align: left;
|
|
font-weight: bold;
|
|
}
|
|
.myth {
|
|
border-right: 1px solid #999999;
|
|
padding: 5px;
|
|
}
|
|
.myth:first-child { border-left: 1px solid #999999; }
|
|
.mytd {
|
|
border-right: 1px solid #999999;
|
|
padding: 5px;
|
|
}
|
|
.mytd:first-child { border-left: 1px solid #999999; }
|
|
</style>
|
|
{/literal}
|
|
|
|
|
|
<div id="summary_ext_wrap" width="100%">
|
|
<div id ="summary_ext" width="100%">
|
|
|
|
|
|
|