The question is how can I handle HttpResponce from an external server?
The idea is that I send json data to an external server
(e.g search data {'keyword': keyword, 'limit':limit, 'db':db}
)
response = requests.post(url, json = userupload, headers=headers)
after that I'm getting response from the server with json data
return HttpResponse(response)
It is on the screen, but as you can understand not in a good view for user...
So how can I add this data in a proper html table for example? (the best option is if I can print it out on the same page)