Edit_Controls.php

<div class="page-header">
    <h2><?= t('Edit the board for "%s"', $project['name']) ?></h2>
    <ul>
        <li>
            <?= $this->modal->medium('plus', t('Add a new column'), 'ColumnController', 'create', array('project_id' => $project['id'])) ?>
        </li>
    </ul>
</div>
<?php if (empty($columns)): ?>
    <p class="alert alert-error"><?= t('Your board doesn\'t have any columns!') ?></p>
<?php else: ?>
    <table
        class="columns-table table-striped"
        data-save-position-url="<?= $this->url->href('ColumnController', 'move', array('project_id' => $project['id'])) ?>">
        <thead>
        <tr>
            <th><?= t('Column') ?></th>
            <th class="column-10"><?= t('Task limit') ?></th>
            <th class="column-15"><?= t('Visible on dashboard') ?></th>
            <th class="column-12"><?= t('Open tasks') ?></th>
            <th class="column-12"><?= t('Closed tasks') ?></th>
        </tr>
        </thead>
        <tbody>
        <?php foreach ($columns as $column): ?>
        <tr data-column-id="<?= $column['id'] ?>">
            <td>
                <i class="fa fa-arrows-alt draggable-row-handle" title="<?= t('Change column position') ?>" role="button" aria-label="<?= t('Change column position') ?>"></i>&nbsp;
                <?= $this->modal->medium('edit', '', 'ColumnController', 'edit', array('project_id' => $project['id'], 'column_id' => $column['id'])) ?>
                &nbsp;
                <?php if ($column['nb_open_tasks'] == 0 && $column['nb_closed_tasks'] == 0): ?>
                        <?= $this->modal->confirm('trash-o', '', 'ColumnController', 'confirm', array('project_id' => $project['id'], 'column_id' => $column['id'])) ?>
                <?php else: ?>
                		&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                <?php endif ?>
                </div>
                <?= $this->text->e($column['title']) ?>
                <?php if (! empty($column['description'])): ?>
                    <?= $this->app->tooltipMarkdown($column['description']) ?>
                <?php endif ?>
            </td>
            <td>
                <?= $column['task_limit'] ?: '∞' ?>
            </td>
            <td>
                <?= $column['hide_in_dashboard'] == 0 ? t('Yes') : t('No') ?>
            </td>
            <td>
                <?= $column['nb_open_tasks'] ?>
            </td>
            <td>
                <?= $column['nb_closed_tasks'] ?>
            </td>
        </tr>
        <?php endforeach ?>
        </tbody>
    </table>
<?php endif ?>