Add section for predefined contents

This commit is contained in:
Frederic Guillot
2017-10-30 16:46:39 -07:00
parent 0a3f2a6a32
commit 48b40ec7bf
35 changed files with 137 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
<div class="page-header">
<h2><?= t('Predefined Contents') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('ProjectPredefinedContentController', 'update', array('project_id' => $project['id'], 'redirect' => 'edit')) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
<fieldset>
<legend><?= t('Predefined Email Subjects') ?></legend>
<?= $this->form->textarea('predefined_email_subjects', $values, $errors, array('tabindex="1"')) ?>
<p class="form-help"><?= t('Write one subject by line.') ?></p>
</fieldset>
<?= $this->modal->submitButtons(array('tabindex' => 2)) ?>
</form>