Postback not received

sandeepharlalka
Hi

I am using Django. in the post view, I have just added a new record to be entered when receiving a postback. No records are created.

The view is as follows.

class PostBackView(FormView):
http_method_names = ['post',]

def post(self, request, *args, **kwargs):
PostBackOrder.objects.create(placed_by='abc')

Can You check.

Thank You
Sign In or Register to comment.