I\'d like to add a few headers to all responses that my Django website returns. Is there a way to do this (besides adding a wrapper to the render function)?
render
When returning JsonResponse.
from django.http import JsonResponse data = {'key','value'} # some data response = JsonResponse(data,status=200) response['Retry-after'] = 345 # seconds response['custom-header'] = 'some value' return response