1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/board/assignee.php

21 lines
844 B
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<section id="main">
<section>
<h3><?= t('Change assignee for the task "%s"', $values['title']) ?></h3>
2014-12-22 19:15:38 +01:00
<form method="post" action="<?= Helper\u('board', 'updateAssignee', array('task_id' => $values['id'])) ?>">
2014-07-20 12:26:15 +02:00
<?= Helper\form_csrf() ?>
2014-12-22 19:15:38 +01:00
2014-07-20 12:26:15 +02:00
<?= Helper\form_hidden('id', $values) ?>
<?= Helper\form_hidden('project_id', $values) ?>
<?= Helper\form_label(t('Assignee'), 'owner_id') ?>
2014-12-22 19:15:38 +01:00
<?= Helper\form_select('owner_id', $users_list, $values) ?><br/>
2014-07-20 12:26:15 +02:00
<div class="form-actions">
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
2014-12-22 19:15:38 +01:00
<?= t('or') ?>
<?= Helper\a(t('cancel'), 'board', 'show', array('project_id' => $project['id'])) ?>
2014-07-20 12:26:15 +02:00
</div>
</form>
</section>
</section>