summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2016-06-12 16:56:46 +0200
committerLudovic Pouzenc <ludovic@pouzenc.fr>2016-06-12 16:56:46 +0200
commit10f837374404d8686e74f983622ced5e10a6ee40 (patch)
tree6c7d54d5a45e8d77157de0200e7e6ee2d66344dd
parent117745b4046523cdb2eb589c677b091565448ff0 (diff)
downloadchd_gestion-10f837374404d8686e74f983622ced5e10a6ee40.zip
chd_gestion-10f837374404d8686e74f983622ced5e10a6ee40.tar.gz
chd_gestion-10f837374404d8686e74f983622ced5e10a6ee40.tar.bz2
Adherents/add : same layout as Adherents/edit (like the paper form)
-rw-r--r--generator/after-bake/src/Template/Adherents/add.ctp79
1 files changed, 79 insertions, 0 deletions
diff --git a/generator/after-bake/src/Template/Adherents/add.ctp b/generator/after-bake/src/Template/Adherents/add.ctp
new file mode 100644
index 0000000..523da66
--- /dev/null
+++ b/generator/after-bake/src/Template/Adherents/add.ctp
@@ -0,0 +1,79 @@
+<?php
+/**
+ * Copyright 2016 Ludovic Pouzenc <ludovic@pouzenc.fr>
+ * Copyright 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
+ *
+ * This file is part of CHD Gestion.
+ *
+ * CHD Gestion is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * CHD Gestion is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with CHD Gestion. If not, see <http://www.gnu.org/licenses/>.
+**/
+?>
+<nav class="large-2 medium-3 columns" id="actions-sidebar">
+ <ul class="side-nav">
+ <li class="heading"><?= __('Actions') ?></li>
+ <li><?= $this->Html->link(__('List Adherents'), ['action' => 'index']) ?></li>
+ <li><?= $this->Html->link(__('List Villes'), ['controller' => 'Villes', 'action' => 'index']) ?></li>
+ <li><?= $this->Html->link(__('New Ville'), ['controller' => 'Villes', 'action' => 'add']) ?></li>
+ <li><?= $this->Html->link(__('List Services'), ['controller' => 'Services', 'action' => 'index']) ?></li>
+ <li><?= $this->Html->link(__('New Service'), ['controller' => 'Services', 'action' => 'add']) ?></li>
+ </ul>
+</nav>
+<div class="adherents form large-10 medium-9 columns content">
+ <?= $this->Form->create($adherent) ?>
+ <fieldset>
+ <legend><?= __('Add Adherent') ?></legend>
+ <div class="columns medium-12 large-6">
+ <?= $this->Form->input('adherent_statut_id', ['options' => $adherentStatuts]); ?>
+ </div>
+ <div class="columns medium-12 large-6">
+ <?= $this->Form->input('num_adt_ttn'); ?>
+ </div>
+ <div class="clearfix"></div>
+ <div class="columns medium-12 large-6">
+ <?php
+ echo $this->Form->input('adherent_type_id', ['options' => $adherentTypes]);
+ echo $this->Form->input('civilite_id', ['options' => $civilites]);
+ echo $this->Form->input('nom');
+ echo $this->Form->input('prenom');
+ echo $this->Form->input('raison');
+ echo $this->Form->input('tel_fixe1');
+ echo $this->Form->input('tel_mobile1');
+ ?>
+ </div>
+ <div class="columns medium-12 large-6">
+ <?php
+ echo $this->Form->input('adresse1');
+ echo $this->Form->input('adresse2');
+ echo $this->Form->input('ville_id', ['options' => $villes]);
+ echo $this->Form->input('mail1');
+ echo $this->Form->input('mail2');
+ echo $this->Form->input('tel_fixe2');
+ echo $this->Form->input('tel_mobile2');
+ ?>
+ </div>
+ <div class="clearfix"></div>
+ <div class="columns medium-12 large-6">
+ <?php
+ echo $this->Form->input('proprio');
+ echo $this->Form->input('nom2');
+ echo $this->Form->input('prenom2');
+ ?>
+ </div>
+ <div class="columns medium-12 large-6">
+ <?= $this->Form->input('notes', ['rows' => 7]); ?>
+ </div>
+ </fieldset>
+ <?= $this->Form->button(__('Submit')) ?>
+ <?= $this->Form->end() ?>
+</div>