1 {**************************************************************************}
3 {* Copyright (C) 2003-2006 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>Marketing de {$prenom} {$nom}</h1>
27 Matricule polytechnique.org : {$matricule}
30 Matricule École (à rentrer lors de l'inscription) : <strong>{$matricule_X}</strong>
35 <h2>Inscription en cours</h2>
38 Cet utilisateur a une inscription en cours depuis le {$pending|date_format}.
41 {if $relance eq '0000-00-00'}
42 il n'a jamais été relancé.
44 sa dernière relance date du {$relance|date_format}
48 <p>[<a href='{rel}/{$path}/insrel'>le relancer</a>]</p>
52 <h2>Adresses connues</h2>
54 <form action="{rel}/{$path}/add" method="post">
55 <table class="bicol" cellpadding="0" cellspacing="0">
64 {iterate from=$addr item=a}
65 <tr class="{cycle values='impair,pair'}">
67 <td><a href="{rel}/fiche.php?user={$a.alias}" class="popup2">{$a.alias}</a> {if $a.type eq user}(*){/if}</td>
68 <td>{$a.date|date_format|default:'-'}</td>
69 <td>{$a.last|date_format|default:'-'}</td>
70 <td class='center'>{$a.nb|default:"-"}</td>
72 <a href='{rel}/{$path}/del/{$a.email}'>del</a><br />
73 <a href='{rel}/{$path}/rel/{$a.email}'>relance</a>
79 <td colspan='5' class='smaller'>(*): mail perso</td>
83 <input type='text' name='email' />
87 <option value="staff">staff</option>
88 <option value="user">user</option>
92 <input type='submit' value='ajouter' />
99 <form action="{rel}/{$path}/relforce/{$email}" method="post">
100 <table class="bicol">
102 <th colspan="2">Edition du mail de relance</th>
105 <td align="right"><strong>From:</strong></td>
106 <td><select name="from">
107 <option value="staff">{$rel_from_staff}</option>
108 <option value="user">{$rel_from_user}</option>
112 <td align="right"><strong>To:</strong></td>
114 <input type="text" value="{$rel_to}" name="to" size="40" maxlength="100" />
115 <input type="submit" name="valider" value="Envoyer" />
119 <td align="right"><strong>Objet:</strong></td>
120 <td><input type="text" name="title" value="{$rel_title}" size="50" maxlength="100" /></td>
123 <td align="right"><strong>Message:</strong></td>
125 <textarea name="message" rows="40" cols="60">{$rel_text}</textarea>
130 <input type="reset" value="Recommencer" />
131 <input type="submit" name="valider" value="Envoyer" />
136 {* vim:set et sw=2 sts=2 sws=2: *}