summaryrefslogtreecommitdiff
path: root/generator/after-bake/src/Template/Equipements
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2016-03-12 00:20:18 +0100
committerLudovic Pouzenc <ludovic@pouzenc.fr>2016-03-12 00:20:18 +0100
commit37a67ea723bb6d93421591b8f3ed15738f53ed9e (patch)
tree38b58703b82eaab20975d6e648533eb44598938e /generator/after-bake/src/Template/Equipements
parenta6104f47f7a0534664f8f3740f303f01e7e7399e (diff)
downloadchd_gestion-37a67ea723bb6d93421591b8f3ed15738f53ed9e.zip
chd_gestion-37a67ea723bb6d93421591b8f3ed15738f53ed9e.tar.gz
chd_gestion-37a67ea723bb6d93421591b8f3ed15738f53ed9e.tar.bz2
First import.
Diffstat (limited to 'generator/after-bake/src/Template/Equipements')
-rw-r--r--generator/after-bake/src/Template/Equipements/index.ctp102
-rw-r--r--generator/after-bake/src/Template/Equipements/view.ctp90
2 files changed, 192 insertions, 0 deletions
diff --git a/generator/after-bake/src/Template/Equipements/index.ctp b/generator/after-bake/src/Template/Equipements/index.ctp
new file mode 100644
index 0000000..75d7919
--- /dev/null
+++ b/generator/after-bake/src/Template/Equipements/index.ctp
@@ -0,0 +1,102 @@
+<%
+/**
+ * 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(__('New Equipement'), ['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>
+ <li><?= $this->Html->link(__('List Ipmgmt'), ['controller' => 'Ipmgmt', 'action' => 'index']) ?></li>
+ <li><?= $this->Html->link(__('List Equipement Modeles'), ['controller' => 'EquipementModeles', 'action' => 'index']) ?></li>
+ <li><?= $this->Html->link(__('New Equipement Modele'), ['controller' => 'EquipementModeles', 'action' => 'add']) ?></li>
+ <li><?= $this->Html->link(__('List Relais'), ['controller' => 'Relais', 'action' => 'index']) ?></li>
+ <li><?= $this->Html->link(__('New Relais'), ['controller' => 'Relais', 'action' => 'add']) ?></li>
+ </ul>
+</nav>
+<div class="equipements index large-10 medium-9 columns content">
+ <h3><?= __('Equipements') ?></h3>
+ <table cellpadding="0" cellspacing="0">
+ <?= $this->Form->create(null) . "\n" ?>
+ <thead>
+ <tr class="filter">
+ <th colspan="3">
+ <?= $this->Form->input('q', [
+ 'placeholder' => __('Adresse MAC...'),
+ 'empty' => __('Adresse MAC...')
+ ]) ?>
+ </th>
+ <th colspan="2">
+ <?= $this->Form->input('equipement_modele_id', [
+ 'placeholder' => __('Equipement Modeles'),
+ 'empty' => __('Equipement Modeles')
+ ]) ?>
+ </th>
+ <th colspan="2">
+ <?= $this->Form->input('relais_id', [
+ 'placeholder' => __('Relais'),
+ 'empty' => __('Relais')
+ ]) ?>
+ </th>
+ <th class="actions">
+ <?= $this->Form->button('Filter', ['type' => 'submit']) . "\n" ?>
+ <?= $this->Html->link('Reset', ['action' => 'index']) . "\n" ?>
+ </th>
+ </tr>
+ <tr>
+ <th><?= $this->Paginator->sort('mac') ?></th>
+ <th><?= $this->Paginator->sort('ipmgmt_id') ?></th>
+ <th><?= $this->Paginator->sort('equipement_mode_id') ?></th>
+ <th><?= $this->Paginator->sort('equipement_modele_id') ?></th>
+ <th><?= $this->Paginator->sort('service_id') ?></th>
+ <th><?= $this->Paginator->sort('relais_id') ?></th>
+ <th><?= $this->Paginator->sort('uplink_id') ?></th>
+ <th class="actions"><?= __('Actions') ?></th>
+ </tr>
+ </thead>
+ <?= $this->Form->end() . "\n" ?>
+ <tbody>
+ <?php foreach ($equipements as $equipement): ?>
+ <tr>
+ <td><?= h($equipement->mac) ?></td>
+ <td><?= $equipement->has('ipmgmt') ? $this->Html->link($equipement->ipmgmt->title, ['controller' => 'Ipmgmt', 'action' => 'view', $equipement->ipmgmt->id]) : '' ?></td>
+ <td><?= h($equipement->equipement_mode_id) ?></td>
+ <td><?= $equipement->has('equipement_modele') ? $this->Html->link($equipement->equipement_modele->title, ['controller' => 'EquipementModeles', 'action' => 'view', $equipement->equipement_modele->id]) : '' ?></td>
+ <td><?= $equipement->has('service') ? $this->Html->link($equipement->service->title, ['controller' => 'Services', 'action' => 'view', $equipement->service->id]) : '' ?></td>
+ <td><?= $equipement->has('relais') ? $this->Html->link($equipement->relais->title, ['controller' => 'Relais', 'action' => 'view', $equipement->relais->id]) : '' ?></td>
+ <td><?= $equipement->has('uplink_id') ? $this->Html->link($equipement->uplink_id, ['controller' => 'Equipements', 'action' => 'view', $equipement->uplink_id]) : '' ?></td>
+ <td class="actions">
+ <?= $this->Html->link(__('View'), ['action' => 'view', $equipement->id]) ?>
+ <?= $this->Html->link(__('Edit'), ['action' => 'edit', $equipement->id]) ?>
+ </td>
+ </tr>
+ <?php endforeach; ?>
+ </tbody>
+ </table>
+ <div class="paginator">
+ <ul class="pagination">
+ <?= $this->Paginator->prev('< ' . __('previous')) ?>
+ <?= $this->Paginator->numbers() ?>
+ <?= $this->Paginator->next(__('next') . ' >') ?>
+ </ul>
+ </div>
+
+</div>
diff --git a/generator/after-bake/src/Template/Equipements/view.ctp b/generator/after-bake/src/Template/Equipements/view.ctp
new file mode 100644
index 0000000..5f22722
--- /dev/null
+++ b/generator/after-bake/src/Template/Equipements/view.ctp
@@ -0,0 +1,90 @@
+<%
+/**
+ * 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(__('Edit Equipement'), ['action' => 'edit', $equipement->id]) ?> </li>
+ <li><?= $this->Html->link(__('List Equipements'), ['action' => 'index']) ?> </li>
+ <li><?= $this->Html->link(__('New Equipement'), ['action' => 'add']) ?> </li>
+ <li><?= $this->Html->link(__('List Ipmgmt'), ['controller' => 'Ipmgmt', 'action' => 'index']) ?> </li>
+ <li><?= $this->Html->link(__('New Ipmgmt'), ['controller' => 'Ipmgmt', 'action' => 'add']) ?> </li>
+ <li><?= $this->Html->link(__('List Equipement Modeles'), ['controller' => 'EquipementModeles', 'action' => 'index']) ?> </li>
+ <li><?= $this->Html->link(__('New Equipement Modele'), ['controller' => 'EquipementModeles', 'action' => 'add']) ?> </li>
+ <li><?= $this->Html->link(__('List Relais'), ['controller' => 'Relais', 'action' => 'index']) ?> </li>
+ <li><?= $this->Html->link(__('New Relais'), ['controller' => 'Relais', '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>
+ <li><?= $this->Html->link(__('List Equipements'), ['controller' => 'Equipements', 'action' => 'index']) ?> </li>
+ <li><?= $this->Html->link(__('New Equipement'), ['controller' => 'Equipements', 'action' => 'add']) ?> </li>
+ <li><?= $this->Html->link(__('List Equipement Modes'), ['controller' => 'EquipementModes', 'action' => 'index']) ?> </li>
+ <li><?= $this->Html->link(__('New Equipement Mode'), ['controller' => 'EquipementModes', 'action' => 'add']) ?> </li>
+ </ul>
+</nav>
+<div class="equipements view large-10 medium-9 columns content">
+ <h3><?= h($equipement->id) ?></h3>
+ <table class="vertical-table">
+ <tr>
+ <th><?= __('Mac') ?></th>
+ <td><?= h($equipement->mac) ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Ipmgmt') ?></th>
+ <td><?= $equipement->has('ipmgmt') ? $this->Html->link($equipement->ipmgmt->title, ['controller' => 'Ipmgmt', 'action' => 'view', $equipement->ipmgmt->id]) : '' ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Equipement Modele') ?></th>
+ <td><?= $equipement->has('equipement_modele') ? $this->Html->link($equipement->equipement_modele->title, ['controller' => 'EquipementModeles', 'action' => 'view', $equipement->equipement_modele->id]) : '' ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Relais') ?></th>
+ <td><?= $equipement->has('relais') ? $this->Html->link($equipement->relais->title, ['controller' => 'Relais', 'action' => 'view', $equipement->relais->id]) : '' ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Service') ?></th>
+ <td><?= $equipement->has('service') ? $this->Html->link($equipement->service->title, ['controller' => 'Services', 'action' => 'view', $equipement->service->id]) : '' ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Uplink') ?></th>
+ <td><?= $equipement->has('uplink_id') ? $this->Html->link($equipement->uplink_id, ['controller' => 'Equipements', 'action' => 'view', $equipement->uplink_id]) : '' ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Equipement Mode') ?></th>
+ <td><?= $equipement->has('equipement_mode') ? $this->Html->link($equipement->equipement_mode->id, ['controller' => 'EquipementModes', 'action' => 'view', $equipement->equipement_mode->id]) : '' ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Description') ?></th>
+ <td><?= h($equipement->description) ?></td>
+ </tr>
+ <tr>
+ <th><?= __('Date Achat') ?></th>
+ <td><?= h($equipement->date_achat) ?></tr>
+ </tr>
+ <tr>
+ <th><?= __('Date Hs') ?></th>
+ <td><?= h($equipement->date_hs) ?></tr>
+ </tr>
+ </table>
+ <div class="row">
+ <h4><?= __('Notes') ?></h4>
+ <?= $this->Text->autoParagraph(h($equipement->notes)); ?>
+ </div>
+</div>