summaryrefslogtreecommitdiff
path: root/app/Templates/category_edit.php
blob: 1339f6da231260471aa2966576e52f2bc9fab4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<section id="main">
    <div class="page-header">
        <h2><?= t('Category modification for the project "%s"', $project['name']) ?></h2>
        <ul>
            <li><a href="?controller=project"><?= t('All projects') ?></a></li>
        </ul>
    </div>
    <section>

    <form method="post" action="?controller=category&amp;action=update&amp;project_id=<?= $project['id'] ?>" autocomplete="off">
        <?= Helper\form_csrf() ?>
        <?= Helper\form_hidden('id', $values) ?>
        <?= Helper\form_hidden('project_id', $values) ?>

        <?= Helper\form_label(t('Category Name'), 'name') ?>
        <?= Helper\form_text('name', $values, $errors, array('required')) ?>

        <div class="form-actions">
            <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
        </div>
    </form>

    </section>
</section>