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