self.request not just request
This commit is contained in:
parent
aed20d2821
commit
334a10359e
|
@ -233,7 +233,7 @@ class EpayFormView(TemplateView):
|
|||
|
||||
def get_context_data(self, **kwargs):
|
||||
order = Order.objects.get(pk=kwargs.get('pk'))
|
||||
accept_url = 'https://' + request.get_host() + order.get_absolute_url()
|
||||
accept_url = 'https://' + self.request.get_host() + order.get_absolute_url()
|
||||
amount = order.total
|
||||
order_id = str(order.pk)
|
||||
description = "BornHack 2016 order #%s" % order.pk
|
||||
|
|
Loading…
Reference in a new issue