summaryrefslogtreecommitdiff
path: root/plugins/Timetrackingeditor/Template/start.php
blob: cc67febd42694881953b641224a820f7dad7091a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div class="page-header">
    <h2><?= t('Start a new Timer') ?></h2>
</div>
<form class="popover-form" method="post" action="<?= $this->url->href('TimeTrackingEditorController', 'startsave', array('plugin' => 'timetrackingeditor', 'project_id' => $values['project_id'], 'task_id' => $values['task_id'])) ?>" autocomplete="off">

    <?= $this->form->csrf() ?>

    <?= $this->form->hidden('project_id', $values) ?>
    <?= $this->form->hidden('task_id', $values) ?>
    <?= $this->form->hidden('subtask_id', $values) ?>

    <?= t('Subtask') ?>
    <?= $values['subtask']['title'] ?>

    <?= $this->form->label(t('Comment'), 'comment') ?>
    <?= $this->form->textarea('comment', $values, $errors, array(), 'markdown-editor') ?>

    <?= $this->form->checkbox('is_billable', t('Billable?'), 1, isset($values['is_billable']) && $values['is_billable'] == 1) ?>

    <div class="form-actions">
        <?= $this->modal->submitButtons() ?> 
    </div>
</form>