2014-10-22 19:59:09 +02:00
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Category modification for the project "%s"', $project['name']) ?></h2>
|
|
|
|
</div>
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
<form method="post" action="?controller=category&action=update&project_id=<?= $project['id'] ?>" autocomplete="off">
|
|
|
|
<?= Helper\form_csrf() ?>
|
|
|
|
<?= Helper\form_hidden('id', $values) ?>
|
|
|
|
<?= Helper\form_hidden('project_id', $values) ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
<?= Helper\form_label(t('Category Name'), 'name') ?>
|
|
|
|
<?= Helper\form_text('name', $values, $errors, array('autofocus required')) ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2014-10-22 19:59:09 +02:00
|
|
|
<div class="form-actions">
|
|
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
|
|
|
</div>
|
|
|
|
</form>
|