Convert source code to UTF-8
[platal.git] / templates / emails / duplicated.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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 adresses en doublon</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 manuellement</strong>
36     </td>
37     <td colspan="2" class="right">
38       <strong><a href="admin/emails/duplicated/create">créer{icon name=add}</a></strong>
39     </td>
40   </tr>
41   {foreach from=$table item=doublon}
42   <tr class="{cycle values="pair,impair"}">
43     <td>
44       <strong>{$doublon.mail}</strong><br />
45       Détecté le {$doublon.detection|date_format}
46     </td>
47     <td>
48       {$doublon.state}
49     </td>
50     <td class="right">
51       {foreach from=$doublon.users item=user name=all}
52       {if $user}
53       <a href="profile/{$user}" class="popup2">{$user}{icon name=user_suit title="Fiche"}</a>
54       <a href="admin/user/{$user}">{icon name=wrench title="Administrer}</a>{if !$smarty.foreach.all.last}<br />{/if}
55       {/if}
56       {/foreach}
57     </td>
58     <td class="right">
59       <a href="admin/emails/duplicated/edit/{$doublon.mail}">{icon name=page_edit title="Editer"}</a>
60       <a href="admin/emails/duplicated/delete/{$doublon.mail}">{icon name=delete title="Supprimer"}</a>
61     </td>
62   </tr>
63   {/foreach}
64 </table>
65 {elseif $action eq "create" || $action eq "edit"}
66 [<a href="admin/emails/duplicated">Retour à la liste des doublons</a>]<br /><br />
67 <form method="post" action="admin/emails/duplicated">
68 <table class="tinybicol">
69   <tr>
70     <th colspan="2">Commenter le doublon</th>
71   </tr>
72   <tr class="impair">
73     <td class="titre">Adresse mail</td>
74   {if $action eq "create"}
75     <td><input type="text" name="emailN" /></td>
76   {else}
77     <td>
78       <a href="mailto:{$doublon.mail}">{icon name=email title="Envoyer un mail"}</a>
79       &nbsp;{$doublon.mail}
80       <input type="hidden" name="emailN" value="{$doublon.mail}" />
81     </td>
82   </tr>
83   {foreach from=$doublon.users key=i name=all item=user}
84     {if $user}
85     {if $i is even}<tr class="impair">{/if}
86     <td>
87       <a href="profile/{$user}" class="popup2">{$user}{icon name=user_suit title="Fiche"}</a>
88       <a href="admin/user/{$user}">{icon name=wrench title="Administrer}</a>{if !$smarty.foreach.all.last}<br />{/if}
89     </td>
90     {if $i is even && $smarty.foreach.all.last}<td></td>{/if}
91     {if $i is odd || $smarty.foreach.all.last}</tr>{/if}
92     {/if}
93   {/foreach}
94   <tr class="pair">
95     <td class="titre">Date de détection</td>
96     <td>{$doublon.detection|date_format}</td>
97   {/if}
98   </tr>
99   <tr class="pair">
100     <td class="titre">Danger</td>
101     <td>
102       <select name="stateN">
103         {foreach from=$states key=state item=text}
104         <option value="{$state}"{if $doublon.state eq $state} selected="selected"{/if}>{$text}</option>
105         {/foreach}
106       </select>
107     </td>
108   </tr>
109   <tr class="impair">
110     <td colspan="2" class="titre">Description</td>
111   {if $doublon.edit}
112   </tr>
113   <tr class="impair">
114     <td colspan="2">
115       <small>Dernière édition par {$doublon.edit} le {$doublon.last|date_format}</small>
116     </td>
117   {/if}
118   </tr>
119   <tr class="impair">
120     <td colspan="2" class="center">
121       <textarea cols="50" rows="10" name="descriptionN">{$doublon.description}</textarea>
122     </td>
123   </tr>
124   <tr>
125     <th colspan="2">
126       <input type="hidden" name="action" value="{$action}" />
127       <input type="submit" name="valid"  value="Valider" />
128     </th>
129   </tr>
130 </table>
131 </form>
132 {/if}
133
134 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}