status_code = models.IntegerField(choices=STATUS_CODES, default=302, verbose_name='redirect type')
def render_to_response(self, request, path=None, subpath=None):
response = HttpResponseRedirect(self.target)
response.status_code = self.status_code
return response
status_code = models.IntegerField(choices=STATUS_CODES, default=302, verbose_name='redirect type')
def render_to_response(self, request, path=None, subpath=None):
response = HttpResponseRedirect(self.target)
response.status_code = self.status_code
return response