Merge branch 'platal-0.9.16'
[platal.git] / templates / admin / ipwatcher.tpl
CommitLineData
5480a216 1{**************************************************************************}
2{* *}
179afa7f 3{* Copyright (C) 2003-2008 Polytechnique.org *}
5480a216 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
a7de4ef7 23<h1>Gestion des IPs surveillées</h1>
5480a216 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">
a7de4ef7 35 <strong>Ajouter une entrée</strong>
5480a216 36 </td>
37 <td colspan="2" class="right">
a7de4ef7 38 <strong><a href="admin/ipwatch/create">créer{icon name=add}</a></strong>
5480a216 39 </td>
40 </tr>
41 {foreach from=$table item=ip}
42 <tr class="{cycle values="pair,impair"}">
43 <td>
61c98f4b 44 <strong>{$ip.ip}/{$ip.mask}</strong><br />
5480a216 45 <small>{$ip.host}</small><br />
a7de4ef7 46 Ajoutée le {$ip.detection|date_format}
5480a216 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"}
a7de4ef7 68[<a href="admin/ipwatch">Retour à la liste des IPs surveillées</a>]<br /><br />
5480a216 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">
a7de4ef7 97 <td class="titre">Date de détection</td>
5480a216 98 <td>{$ip.detection|date_format}</td>
99 {/if}
100 </tr>
101 <tr class="pair">
61c98f4b
FB
102 <td class="titre">Masque d'influence</td>
103 <td><input type="text" name="maskN" value="{$ip.mask}" /></td>
104 </tr>
105 <tr class="pair">
5480a216 106 <td class="titre">Danger</td>
107 <td>
108 <select name="stateN">
109 {foreach from=$states key=state item=text}
110 <option value="{$state}"{if $ip.state eq $state} selected="selected"{/if}>{$text}</option>
111 {/foreach}
112 </select>
113 </td>
114 </tr>
115 <tr class="impair">
116 <td colspan="2" class="titre">Description</td>
117 {if $ip.edit}
118 </tr>
119 <tr class="impair">
120 <td colspan="2">
a7de4ef7 121 <small>Dernière édition par {$ip.edit} le {$ip.last|date_format}</small>
5480a216 122 </td>
123 {/if}
124 </tr>
125 <tr class="impair">
126 <td colspan="2" class="center">
127 <textarea cols="50" rows="10" name="descriptionN">{$ip.description}</textarea>
128 </td>
129 </tr>
130 <tr>
131 <th colspan="2">
132 <input type="hidden" name="action" value="{$action}" />
133 <input type="submit" name="valid" value="Valider" />
134 </th>
135 </tr>
136</table>
137</form>
138{/if}
139
a7de4ef7 140{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}