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
39 lines
746 B
Smarty
39 lines
746 B
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 () {
|
|
changerequest_ext_onload();
|
|
});
|
|
</script>
|
|
<style>
|
|
.mybutton {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
background-color: #92968e;
|
|
font-style: none;
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
</style>
|
|
|
|
{/literal}
|
|
|
|
|
|
|
|
|
|
<div id="changerequest_ext_wrap" width="100%">
|
|
<div id ="changerequest_ext" width="100%">
|
|
<p></p>
|
|
<a>Download Sheet</a><a class="mybutton" href="pdf.php">Download</a>
|
|
<p></p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|