summaryrefslogtreecommitdiff
path: root/app/Template/export/summary.php
blob: 191d36b6a9038c76f615576878a0c623569b18ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div class="page-header">
    <h2>
        <?= t('Daily project summary export for "%s"', $project['name']) ?>
    </h2>
</div>

<p class="alert alert-info"><?= t('This export contains the number of tasks per column grouped per day.') ?></p>

<form method="get" action="?" autocomplete="off">

    <?= $this->formHidden('controller', $values) ?>
    <?= $this->formHidden('action', $values) ?>
    <?= $this->formHidden('project_id', $values) ?>

    <?= $this->formLabel(t('Start Date'), 'from') ?>
    <?= $this->formText('from', $values, $errors, array('required', 'placeholder="'.$this->inList($date_format, $date_formats).'"'), 'form-date') ?><br/>

    <?= $this->formLabel(t('End Date'), 'to') ?>
    <?= $this->formText('to', $values, $errors, array('required', 'placeholder="'.$this->inList($date_format, $date_formats).'"'), 'form-date') ?>

    <div class="form-help"><?= t('Others formats accepted: %s and %s', date('Y-m-d'), date('Y_m_d')) ?></div>

    <div class="form-actions">
        <input type="submit" value="<?= t('Execute') ?>" class="btn btn-blue"/>
    </div>
</form>