summaryrefslogtreecommitdiff
path: root/generator/after-bake/src/Template/Ippubliques/index.ctp
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/Ippubliques/index.ctp
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/Ippubliques/index.ctp')
-rw-r--r--generator/after-bake/src/Template/Ippubliques/index.ctp84
1 files changed, 84 insertions, 0 deletions
diff --git a/generator/after-bake/src/Template/Ippubliques/index.ctp b/generator/after-bake/src/Template/Ippubliques/index.ctp
new file mode 100644
index 0000000..72f9c25
--- /dev/null
+++ b/generator/after-bake/src/Template/Ippubliques/index.ctp
@@ -0,0 +1,84 @@
+<%
+/**
+ * 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 Ippublique'), ['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="ippubliques index large-10 medium-9 columns content">
+ <h3><?= __('Ippubliques') ?></h3>
+ <table cellpadding="0" cellspacing="0">
+ <?= $this->Form->create(null) . "\n" ?>
+ <thead>
+ <tr class="filter">
+ <th colspan="2">
+ <?= $this->Form->input('q', [
+ 'placeholder' => __('Rechercher...'),
+ 'empty' => __('Rechercher...')
+ ]) ?>
+ </th>
+ <th colspan="2">
+ <?= $this->Form->input('secteur_id', [
+ 'placeholder' => __('Secteurs'),
+ 'empty' => __('Secteurs')
+ ]) ?>
+ </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('ip4') ?></th>
+ <th><?= $this->Paginator->sort('ip6') ?></th>
+ <th><?= $this->Paginator->sort('secteur_id') ?></th>
+ <th><?= __('Utilisee') ?></th>
+ <th class="actions"><?= __('Actions') ?></th>
+ </tr>
+ </thead>
+ <?= $this->Form->end() . "\n" ?>
+ <tbody>
+ <?php foreach ($ippubliques as $ippublique): ?>
+ <tr>
+ <td><?= h($ippublique->ip4) ?></td>
+ <td><?= h($ippublique->ip6) ?></td>
+ <td><?= $ippublique->has('secteur') ? h($ippublique->secteur->title) : '' ?></td>
+ <td><?= count($ippublique->services) ? __('oui'): __('non') ?></td>
+ <td class="actions">
+ <?= $this->Html->link(__('View'), ['action' => 'view', $ippublique->ip4]) ?>
+ </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>