From 10f837374404d8686e74f983622ced5e10a6ee40 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Sun, 12 Jun 2016 16:56:46 +0200 Subject: Adherents/add : same layout as Adherents/edit (like the paper form) --- .../after-bake/src/Template/Adherents/add.ctp | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 generator/after-bake/src/Template/Adherents/add.ctp 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 @@ + + * Copyright 2016 Nicolas Goaziou + * + * 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 . +**/ +?> + +
+ Form->create($adherent) ?> +
+ +
+ Form->input('adherent_statut_id', ['options' => $adherentStatuts]); ?> +
+
+ Form->input('num_adt_ttn'); ?> +
+
+
+ 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'); + ?> +
+
+ 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'); + ?> +
+
+
+ Form->input('proprio'); + echo $this->Form->input('nom2'); + echo $this->Form->input('prenom2'); + ?> +
+
+ Form->input('notes', ['rows' => 7]); ?> +
+
+ Form->button(__('Submit')) ?> + Form->end() ?> +
-- cgit v1.1