Merge branch 'platal-0.9.15'
[platal.git] / templates / admin / ipwatcher.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2008 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
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.                                   *}
10 {*                                                                        *}
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.                          *}
15 {*                                                                        *}
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               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 <h1>Gestion des IPs surveillées</h1>
24
25 {if $action eq "list"}
26 <table class="bicol">
27   <tr>
28     <th>Adresse</th>
29     <th>Etat</th>
30     <th>Utilisateurs</th>
31     <th></th>
32   </tr>
33   <tr class="impair">
34     <td colspan="2">
35       <strong>Ajouter une entrée</strong>
36     </td>
37     <td colspan="2" class="right">
38       <strong><a href="admin/ipwatch/create">créer{icon name=add}</a></strong>
39     </td>
40   </tr>
41   {foreach from=$table item=ip}
42   <tr class="{cycle values="pair,impair"}">
43     <td>
44       <strong>{$ip.ip}</strong><br />
45       <small>{$ip.host}</small><br />
46       Ajoutée le {$ip.detection|date_format}
47     </td>
48     <td>
49       {$ip.state}
50     </td>
51     <td class="right">
52       {foreach from=$ip.users item=user name=all}
53       {if $user}
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}
57       {/if}
58       {/foreach}
59     </td>
60     <td class="right">
61       <a href="admin/ipwatch/edit/{$ip.ip}">{icon name=page_edit title="Editer"}</a>
62       <a href="admin/ipwatch/delete/{$ip.ip}">{icon name=delete title="Supprimer"}</a>
63     </td>
64   </tr>
65   {/foreach}
66 </table>
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">
70 <table class="tinybicol">
71   <tr>
72     <th colspan="2">Commenter une adresse IP</th>
73   </tr>
74   <tr class="impair">
75   {if $action eq "create"}
76     <td class="titre">Adresse IP</td>
77     <td><input type="text" name="ipN" /></td>
78   {else}
79     <td colspan="2">
80       <strong>{$ip.ip}</strong> ({$ip.host})
81       <input type="hidden" name="ipN" value="{$ip.ip}" />
82     </td>
83   </tr>
84   {foreach from=$ip.users key=i name=all item=user}
85     {if $user}
86     {if $i is even}<tr class="impair">{/if}
87     <td>
88       <a href="profile/{$user}" class="popup2">{$user}</a>
89       <a href="admin/user/{$user}">{icon name=wrench title="Administrer}</a>
90       <a href="admin/logger/user/{$user}">{icon name=information title="Logs"}</a>{if !$smarty.foreach.all.last}<br />{/if}
91     </td>
92     {if $i is even && $smarty.foreach.all.last}<td></td>{/if}
93     {if $i is odd || $smarty.foreach.all.last}</tr>{/if}
94     {/if}
95   {/foreach}
96   <tr class="pair">
97     <td class="titre">Date de détection</td>
98     <td>{$ip.detection|date_format}</td>
99   {/if}
100   </tr>
101   <tr class="pair">
102     <td class="titre">Danger</td>
103     <td>
104       <select name="stateN">
105         {foreach from=$states key=state item=text}
106         <option value="{$state}"{if $ip.state eq $state} selected="selected"{/if}>{$text}</option>
107         {/foreach}
108       </select>
109     </td>
110   </tr>
111   <tr class="impair">
112     <td colspan="2" class="titre">Description</td>
113   {if $ip.edit}
114   </tr>
115   <tr class="impair">
116     <td colspan="2">
117       <small>Dernière édition par {$ip.edit} le {$ip.last|date_format}</small>
118     </td>
119   {/if}
120   </tr>
121   <tr class="impair">
122     <td colspan="2" class="center">
123       <textarea cols="50" rows="10" name="descriptionN">{$ip.description}</textarea>
124     </td>
125   </tr>
126   <tr>
127     <th colspan="2">
128       <input type="hidden" name="action" value="{$action}" />
129       <input type="submit" name="valid"  value="Valider" />
130     </th>
131   </tr>
132 </table>
133 </form>
134 {/if}
135
136 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}