I'm trying to enable django to allow one specific view to be embedded on external sites, preferabilly without sites restrictions.
In my views.py file, I have added the following code, where the view futurebig is the one I want to enable to be embedded:
from django.views.decorators.clickjacking import xframe_options_sameorigin
...
@xframe_options_sameorigin
def futurebig(request):
...
return render_to_response('templates/iframe/future_clock_big.html', context_dict, context)
which doesn't help as I understand because it only enables embedding in the same server.
How can I set the headers for that specific view to enable it to be embedded in any website?
For the record, I'm just a frontend developer, the backend developer who developed the site is no longer working with me and refused to document his code, so, If anyone could help me and explain carefully where and what modifications I should do, I'll apreciatte it very much.
Thanks.
As far as I know, the Django version is 1.6