Skip to content

Instantly share code, notes, and snippets.

@bradleyg
Created March 19, 2014 14:50
Show Gist options
  • Save bradleyg/9643277 to your computer and use it in GitHub Desktop.
Save bradleyg/9643277 to your computer and use it in GitHub Desktop.
def get(self, request, *args, **kwargs):
res = super(SubmissionDetailView, self).get(request, *args, **kwargs)
if not request.is_ajax():
return res
ctx = self.get_context_data()
return json_response(ctx['data'], 200, False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment