first reimport from platal
[platal.git] / templates / paiement / index.tpl
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
24 <h1>Micropaiments</h1>
25
26 {if $smarty.request.op eq "submit" and !$xorg_error->errs|count}
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>
69 En cliquant sur "Valider", tu seras redirigé{if $smarty.session.sexe}e{/if} vers le site de {$pay->api->nomsite}, où il te
70 sera demandé de saisir ton numéro de carte bancaire.  Lorsque le paiement aura été effectué, tu
71 recevras une confirmation par email.
72 </p>
73 {if $pay->api->text}
74 <p>
75 {$pay->api->text}
76 </p>
77 {/if}
78
79 {else}
80
81 <form method="post" action="{$smarty.server.PHP_SELF}">
82   <p> Si tu ne souhaites pas utiliser notre interface de
83   télépaiement, tu peux virer directement la somme de ton choix sur notre compte
84   30004 00314 00010016782 60. Nous veillerons à ce que ton paiement parvienne à
85   son destinataire.  Pense toutefois à le préciser dans le motif du
86   versement.
87   <br /><br />
88   </p>
89   <table class="bicol">
90     <tr>
91       <th colspan="2">Effectuer un télépaiement</th>
92     </tr>
93     <tr>
94       <td>Transaction</td>
95       <td>
96         <select name="ref" onchange="this.form.op.value='select'; this.form.submit();">
97           {select_db_table table="`$prefix`paiements" valeur=$pay->id where=" WHERE FIND_IN_SET('old',flags)=0"}
98         </select>
99         {if $pay->url}
100         <br />
101         <a href="{$pay->url}">plus d'informations</a>
102         {/if}
103       </td>
104     </tr>
105     <tr>
106       <td>Méthode</td>
107       <td>
108         <select name="methode">
109           {select_db_table table="paiement.methodes" valeur=$methode}
110         </select>
111       </td>
112     </tr>
113     <tr>
114       <td>Montant (euros)</td>
115       <td><input type="text" name="montant" size="13" class='right' value="{$montant}" /></td>
116     </tr>
117     <tr>
118       <td>&nbsp;</td>
119       <td>
120         <input type="hidden" name="op" value="submit" />
121         <input type="submit" value="Continuer" />
122       </td>
123     </tr>
124   </table>
125 </form>
126
127 {if $transactions}
128 <p class="descr">Tu as déjà effecuté des paiements pour cette transaction :</p>
129 <table class="bicol">
130 <tr><th>Date</th><th>Montant</th></tr>
131 {iterate from=$transactions item=t}
132   <tr class="{cycle values="pair,impair"}">
133     <td>{$t.timestamp|date_format}</td>
134     <td>{$t.montant}</td>
135   </tr>
136 {/iterate}
137 </table>
138 {/if}
139
140 {/if}
141
142
143 {* vim:set et sw=2 sts=2 sws=2: *}