2026-07-08 13:03:35 -03:00
|
|
|
<?php $choice = isset($values['organon_tweaks_emphasize_duedate']) && in_array($values['organon_tweaks_emphasize_duedate'], array('on', 'off'), true) ? $values['organon_tweaks_emphasize_duedate'] : 'default' ?>
|
2026-07-08 09:00:50 -03:00
|
|
|
|
|
|
|
|
<h3><i class="fa fa-umbrella fa-fw" aria-hidden="true"></i> <?= t('OrganonTweaks') ?></h3>
|
|
|
|
|
<div class="listing">
|
|
|
|
|
<p><strong><?= t('Emphasize due date on the board') ?></strong></p>
|
|
|
|
|
|
|
|
|
|
<label style="display:inline-block; margin-right:16px;">
|
|
|
|
|
<input type="radio" name="organon_tweaks_emphasize_duedate" value="default" <?= $choice === 'default' ? 'checked="checked"' : '' ?>> <?= t('Use default') ?>
|
|
|
|
|
</label>
|
|
|
|
|
<label style="display:inline-block; margin-right:16px;">
|
2026-07-08 13:03:35 -03:00
|
|
|
<input type="radio" name="organon_tweaks_emphasize_duedate" value="on" <?= $choice === 'on' ? 'checked="checked"' : '' ?>> <?= t('Always on') ?>
|
2026-07-08 09:00:50 -03:00
|
|
|
</label>
|
|
|
|
|
<label style="display:inline-block; margin-right:16px;">
|
2026-07-08 13:03:35 -03:00
|
|
|
<input type="radio" name="organon_tweaks_emphasize_duedate" value="off" <?= $choice === 'off' ? 'checked="checked"' : '' ?>> <?= t('Always off') ?>
|
2026-07-08 09:00:50 -03:00
|
|
|
</label>
|
|
|
|
|
|
|
|
|
|
<p class="form-help">
|
|
|
|
|
<?= t('Enlarge and bold the due date on this board. "Use default" follows the global OrganonTweaks setting.') ?>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
|
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
|
|
|
|
|
</div>
|
2026-07-11 15:42:36 -03:00
|
|
|
<hr>
|