Skip to content

Instantly share code, notes, and snippets.

@ar45
Created December 4, 2014 23:13
Show Gist options
  • Save ar45/e6bdfeef789c4caccb0b to your computer and use it in GitHub Desktop.
Save ar45/e6bdfeef789c4caccb0b to your computer and use it in GitHub Desktop.
from django.contrib.admin.sites import AlreadyRegistered
from django.db.models.loading import get_models
for model in get_models():
try:
admin.site.register(model)
except AlreadyRegistered:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment