# middleware to add GNU Terry Pratchett to django # point to this class in your MIDDLEWARE_CLASSES class GNUTerryPratchett(object): @staticmethod def process_response(request, response): response['X-Clacks-Overhead'] = 'GNU Terry Pratchett' return response