28 lines
929 B
HTML
28 lines
929 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<script charset="UTF-8" src="https://ssl.ditonlinebetalingssystem.dk/integration/ewindow/paymentwindow.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
paymentwindow = new PaymentWindow({
|
|
'merchantnumber': "{{ merchant_number }}",
|
|
'description': "{{ description }}",
|
|
'instantcapture': 1,
|
|
'ownreceipt': 1,
|
|
'amount': "{{ amount }}",
|
|
'currency': "DKK",
|
|
'orderid': "{{ order_id }}",
|
|
'accepturl': "{{ accept_url }}",
|
|
'hash': "{{ epay_hash }}",
|
|
});
|
|
</script>
|
|
<input onclick="javascript: paymentwindow.open()" type="button" value="Go to payment">
|
|
<script type="text/javascript">
|
|
$( document ).ready(function() {
|
|
paymentwindow.open();
|
|
});
|
|
</script>
|
|
</article>
|
|
{% endblock content %}
|
|
|