geoloc sur xnet
[platal.git] / templates / paiement / index.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2004 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
8c32e44f 24<h1>Télépaiements</h1>
0337d704 25
3600bf88 26{if $smarty.request.op eq "submit" and !$xorg_errors|count}
0337d704 27
28<table class="bicol">
29 <tr>
30 <th colspan="2">Paiement via {$meth->text}</th>
31 </tr>
32 <tr>
33 <td><b>Transaction</b></td>
34 <td>{$pay->text}</td>
35 </tr>
36 <tr>
37 <td><b>Montant (euros)</b></td>
38 <td>{$montant}</td>
39 </tr>
40 <tr>
41 <td>&nbsp;</td>
42 <td>
43 <form method="post" action="{$pay->api->urlform}">
44 <div>
45 <!-- infos commercant -->
46 {foreach from=$pay->api->infos.commercant key="name" item="value"}
47 <input type="hidden" name="{$name}" value="{$value}" />
48 {/foreach}
49 <!-- infos client -->
50 {foreach from=$pay->api->infos.client key="name" item="value"}
51 <input type="hidden" name="{$name}" value="{$value}" />
52 {/foreach}
53 <!-- infos commande -->
54 {foreach from=$pay->api->infos.commande key="name" item="value"}
55 <input type="hidden" name="{$name}" value="{$value}" />
56 {/foreach}
57
58 <!-- infos divers -->
59 {foreach from=$pay->api->infos.divers key="name" item="value"}
60 <input type="hidden" name="{$name}" value="{$value}" />
61 {/foreach}
62 <input type="submit" value="Valider" />
63 </div>
64 </form>
65 </td>
66 </tr>
67</table>
68<p>
69En cliquant sur "Valider", tu seras redirigé{if $smarty.session.sexe}e{/if} vers le site de {$pay->api->nomsite}, où il te
70sera demandé de saisir ton numéro de carte bancaire. Lorsque le paiement aura été effectué, tu
71recevras une confirmation par email.
72</p>
73{if $pay->api->text}
74<p>
75{$pay->api->text}
76</p>
77{/if}
3b3e9d15 78{if $evtlink}
79<p class="erreur">
80Si tu n'es pas encore inscrit à cet événement, n'oublie pas d'aller t'<a href='http://www.polytechnique.net/{$evtlink.diminutif}/evt-detail.php?eid={$evtlink.eid}'>inscrire</a>.
81</p>
82{/if}
0337d704 83
84{else}
85
86<form method="post" action="{$smarty.server.PHP_SELF}">
87 <p> Si tu ne souhaites pas utiliser notre interface de
88 télépaiement, tu peux virer directement la somme de ton choix sur notre compte
89 30004 00314 00010016782 60. Nous veillerons à ce que ton paiement parvienne à
90 son destinataire. Pense toutefois à le préciser dans le motif du
91 versement.
92 <br /><br />
93 </p>
94 <table class="bicol">
95 <tr>
96 <th colspan="2">Effectuer un télépaiement</th>
97 </tr>
98 <tr>
99 <td>Transaction</td>
100 <td>
a75f6a97 101 <select name="ref" onchange="this.form.op.value='select'; this.form.montant.value=0; this.form.submit();">
0337d704 102 {select_db_table table="`$prefix`paiements" valeur=$pay->id where=" WHERE FIND_IN_SET('old',flags)=0"}
103 </select>
104 {if $pay->url}
105 <br />
106 <a href="{$pay->url}">plus d'informations</a>
107 {/if}
108 </td>
109 </tr>
110 <tr>
111 <td>Méthode</td>
112 <td>
113 <select name="methode">
114 {select_db_table table="paiement.methodes" valeur=$methode}
115 </select>
116 </td>
117 </tr>
118 <tr>
119 <td>Montant (euros)</td>
120 <td><input type="text" name="montant" size="13" class='right' value="{$montant}" /></td>
121 </tr>
122 <tr>
123 <td>&nbsp;</td>
124 <td>
125 <input type="hidden" name="op" value="submit" />
126 <input type="submit" value="Continuer" />
127 </td>
128 </tr>
129 </table>
130</form>
131
132{if $transactions}
133<p class="descr">Tu as déjà effecuté des paiements pour cette transaction :</p>
134<table class="bicol">
135<tr><th>Date</th><th>Montant</th></tr>
136{iterate from=$transactions item=t}
137 <tr class="{cycle values="pair,impair"}">
138 <td>{$t.timestamp|date_format}</td>
139 <td>{$t.montant}</td>
140 </tr>
141{/iterate}
142</table>
143{/if}
144
145{/if}
146
147
148{* vim:set et sw=2 sts=2 sws=2: *}