18 lines
585 B
PHP
18 lines
585 B
PHP
<div class="page-header">
|
|
<h2><?= t('Remove this column') ?></h2>
|
|
</div>
|
|
|
|
<form method="post" action="<?= $this->url->href('ColumnController', 'remove', array('plugin' => 'OrganonTweaks', 'project_id' => $project['id'])) ?>">
|
|
<?= $this->form->csrf() ?>
|
|
<?= $this->form->hidden('column_id', array('column_id' => $column_id)) ?>
|
|
|
|
<p class="alert alert-info">
|
|
<?= t('Do you really want to remove this column: "%s"?', $column) ?>
|
|
</p>
|
|
|
|
<?= $this->modal->submitButtons(array(
|
|
'submitLabel' => t('Remove'),
|
|
'color' => 'red',
|
|
)) ?>
|
|
</form>
|