Rename Locales and Templates folders to be more consistent

This commit is contained in:
Frédéric Guillot
2014-10-24 22:51:30 -04:00
parent 180efb962c
commit 90e0616299
132 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
<div class="page-header">
<h2><?= t('Edit project') ?></h2>
</div>
<form method="post" action="<?= Helper\u('project', 'update', array('project_id' => $values['id'])) ?>" autocomplete="off">
<?= Helper\form_csrf() ?>
<?= Helper\form_hidden('id', $values) ?>
<?= Helper\form_label(t('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>