1 {**************************************************************************}
3 {* Copyright (C) 2003-2009 Polytechnique.org *}
4 {* http://opensource.polytechnique.org/ *}
6 {* This program is free software; you can redistribute it and/or modify *}
7 {* it under the terms of the GNU General Public License as published by *}
8 {* the Free Software Foundation; either version 2 of the License, or *}
9 {* (at your option) any later version. *}
11 {* This program is distributed in the hope that it will be useful, *}
12 {* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13 {* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14 {* GNU General Public License for more details. *}
16 {* You should have received a copy of the GNU General Public License *}
17 {* along with this program; if not, write to the Free Software *}
18 {* Foundation, Inc., *}
19 {* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
21 {**************************************************************************}
23 <h1>Gestion des IPs surveillées</h1>
25 {if $action eq "list"}
35 <strong>Ajouter une entrée</strong>
37 <td colspan="2" class="right">
38 <strong><a href="admin/ipwatch/create">créer{icon name=add}</a></strong>
41 {foreach from=$table item=ip}
42 <tr class="{cycle values="pair,impair"}">
44 <strong>{$ip.ip}/{$ip.mask}</strong><br />
45 <small>{$ip.host}</small><br />
46 Ajoutée le {$ip.detection|date_format}
52 {foreach from=$ip.users item=user name=all}
54 <a href="profile/{$user}" class="popup2">{$user}</a>
55 <a href="admin/user/{$user}">{icon name=wrench title=Administrer}</a>
56 <a href="admin/logger/user/{$user}">{icon name=information title="Logs"}</a>{if !$smarty.foreach.all.last}<br />{/if}
61 <a href="admin/ipwatch/edit/{$ip.ip}">{icon name=page_edit title="Editer"}</a>
62 <a href="admin/ipwatch/delete/{$ip.ip}?token={xsrf_token}">{icon name=delete title="Supprimer"}</a>
67 {elseif $action eq "create" || $action eq "edit"}
68 [<a href="admin/ipwatch">Retour à la liste des IPs surveillées</a>]<br /><br />
69 <form method="post" action="admin/ipwatch">
71 <table class="tinybicol">
73 <th colspan="2">Commenter une adresse IP</th>
76 {if $action eq "create"}
77 <td class="titre">Adresse IP</td>
78 <td><input type="text" name="ipN" /></td>
81 <strong>{$ip.ip}</strong> ({$ip.host})
82 <input type="hidden" name="ipN" value="{$ip.ip}" />
85 {foreach from=$ip.users key=i name=all item=user}
87 {if $i is even}<tr class="impair">{/if}
89 <a href="profile/{$user}" class="popup2">{$user}</a>
90 <a href="admin/user/{$user}">{icon name=wrench title="Administrer}</a>
91 <a href="admin/logger/user/{$user}">{icon name=information title="Logs"}</a>{if !$smarty.foreach.all.last}<br />{/if}
93 {if $i is even && $smarty.foreach.all.last}<td></td>{/if}
94 {if $i is odd || $smarty.foreach.all.last}</tr>{/if}
98 <td class="titre">Date de détection</td>
99 <td>{$ip.detection|date_format}</td>
103 <td class="titre">Masque d'influence</td>
104 <td><input type="text" name="maskN" value="{$ip.mask}" /></td>
107 <td class="titre">Danger</td>
109 <select name="stateN">
110 {foreach from=$states key=state item=text}
111 <option value="{$state}"{if $ip.state eq $state} selected="selected"{/if}>{$text}</option>
117 <td colspan="2" class="titre">Description</td>
122 <small>Dernière édition par {$ip.edit} le {$ip.last|date_format}</small>
127 <td colspan="2" class="center">
128 <textarea cols="50" rows="10" name="descriptionN">{$ip.description}</textarea>
133 <input type="hidden" name="action" value="{$action}" />
134 <input type="submit" name="valid" value="Valider" />
141 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}