Skip to content

Instantly share code, notes, and snippets.

@svfat
Created June 16, 2015 09:34
Show Gist options
  • Save svfat/8baeeb5b589dd241c206 to your computer and use it in GitHub Desktop.
Save svfat/8baeeb5b589dd241c206 to your computer and use it in GitHub Desktop.
django admin register shortcut
from django.contrib import admin
from .models import Post
@admin.register(Post)
class PostAdmin(admin.ModelAdmin):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment