provide epay with a complete url to return the customer to after payment
This commit is contained in:
parent
d22ef963d4
commit
aed20d2821
|
@ -233,7 +233,7 @@ class EpayFormView(TemplateView):
|
||||||
|
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
order = Order.objects.get(pk=kwargs.get('pk'))
|
order = Order.objects.get(pk=kwargs.get('pk'))
|
||||||
accept_url = order.get_absolute_url()
|
accept_url = 'https://' + request.get_host() + order.get_absolute_url()
|
||||||
amount = order.total
|
amount = order.total
|
||||||
order_id = str(order.pk)
|
order_id = str(order.pk)
|
||||||
description = "BornHack 2016 order #%s" % order.pk
|
description = "BornHack 2016 order #%s" % order.pk
|
||||||
|
|
Loading…
Reference in a new issue