Skip to content

Instantly share code, notes, and snippets.

@ojii
Created June 27, 2011 14:05
Show Gist options
  • Save ojii/1048915 to your computer and use it in GitHub Desktop.
Save ojii/1048915 to your computer and use it in GitHub Desktop.
class AwesomeAdmin(ModelAdmin):
def get_form(self, request, obj=None, **kwargs):
form_class = super(AwesomeAdmin, self).get_form(request, obj, **kwargs)
form_class.request = request
return form_class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment