mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
29 lines
1.3 KiB
PHP
29 lines
1.3 KiB
PHP
<div class="page-header">
|
|
<h2><?= t('Clone this project') ?></h2>
|
|
</div>
|
|
|
|
<div class="confirm">
|
|
<p class="alert alert-info">
|
|
<?= t('Which parts of the project do you want to duplicate?') ?>
|
|
</p>
|
|
<form method="post" action="<?= $this->url->href('ProjectViewController', 'doDuplication', array('project_id' => $project['id'], 'duplicate' => 'yes')) ?>" autocomplete="off">
|
|
|
|
<?= $this->form->csrf() ?>
|
|
|
|
<?php if ($project['is_private'] == 0): ?>
|
|
<?= $this->form->checkbox('projectPermission', t('Permissions'), 1, true) ?>
|
|
<?php endif ?>
|
|
|
|
<?= $this->form->checkbox('categoryModel', t('Categories'), 1, true) ?>
|
|
<?= $this->form->checkbox('tagDuplicationModel', t('Tags'), 1, true) ?>
|
|
<?= $this->form->checkbox('actionModel', t('Actions'), 1, true) ?>
|
|
<?= $this->form->checkbox('swimlaneModel', t('Swimlanes'), 1, false) ?>
|
|
<?= $this->form->checkbox('projectMetadataModel', t('Metadata'), 1, false) ?>
|
|
<?= $this->form->checkbox('projectTaskDuplicationModel', t('Tasks'), 1, false) ?>
|
|
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-red"><?= t('Duplicate') ?></button>
|
|
<?= t('or') ?> <?= $this->url->link(t('cancel'), 'ProjectViewController', 'show', array('project_id' => $project['id'])) ?>
|
|
</div>
|
|
</form>
|
|
</div>
|