Skip to content

Instantly share code, notes, and snippets.

@pizzapanther
Created August 29, 2013 18:20
Show Gist options
  • Select an option

  • Save pizzapanther/6381543 to your computer and use it in GitHub Desktop.

Select an option

Save pizzapanther/6381543 to your computer and use it in GitHub Desktop.
Admin get_form override
class EventAdmin(admin.ModelAdmin):
def get_form(self, request, obj=None, **kwargs):
if request.user.is_superuser:
return EventAdminForm
else:
return EventForm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment