Locatizations.
[wolnelektury.git] / src / club / templates / payu / rec_widget.html
1 {% load i18n %}
2 <h3>{% trans "Podaj dane karty pĹ‚atniczej" %}</h3>
3 <div class="iframe">
4   <form id="theform" method='POST'  action='{% url "club_payu_rec_payment" schedule.key %}'>
5     {% csrf_token %}
6     {{ form }}
7   </form>
8
9   <script>
10    function paymentcallback(data) {
11        $("#theform #id_token").val(data.value);
12        $("#theform").submit()
13    }
14   </script>
15
16   <div id="payu-widget"></div>
17   <script
18       src="{{ pos.get_api_host }}/front/widget/js/payu-bootstrap.js"
19
20       {% for k, v in widget_args.items %}
21            {{ k }}="{{ v }}"
22       {% endfor %}
23
24       success-callback="paymentcallback"
25       sig="{{ widget_sig }}">
26   </script>
27 </div>