diff options
Diffstat (limited to 'bn_django/photos/admin.py')
-rw-r--r-- | bn_django/photos/admin.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bn_django/photos/admin.py b/bn_django/photos/admin.py new file mode 100644 index 0000000..a32ae7e --- /dev/null +++ b/bn_django/photos/admin.py @@ -0,0 +1,6 @@ +from bn_django.photos.models import Photo, Gallery +from django.contrib import admin + +admin.site.register(Photo) +admin.site.register(Gallery) + |