summaryrefslogtreecommitdiff
path: root/app/Template/config/board.php
blob: 19a4bcd7ec9e52eb8e2433d20dcd529eb0d658ee (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
<div class="page-header">
    <h2><?= t('Board settings') ?></h2>
</div>
<section>
<form method="post" action="<?= $this->url->href('config', 'board') ?>" autocomplete="off">

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

    <?= $this->form->label(t('Task highlight period'), 'board_highlight_period') ?>
    <?= $this->form->number('board_highlight_period', $values, $errors) ?><br/>
    <p class="form-help"><?= t('Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)') ?></p>

    <?= $this->form->label(t('Refresh interval for public board'), 'board_public_refresh_interval') ?>
    <?= $this->form->number('board_public_refresh_interval', $values, $errors) ?><br/>
    <p class="form-help"><?= t('Frequency in second (60 seconds by default)') ?></p>

    <?= $this->form->label(t('Refresh interval for private board'), 'board_private_refresh_interval') ?>
    <?= $this->form->number('board_private_refresh_interval', $values, $errors) ?><br/>
    <p class="form-help"><?= t('Frequency in second (0 to disable this feature, 10 seconds by default)') ?></p>

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