mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-04 05:37:58 +00:00
9 lines
173 B
Python
Executable File
9 lines
173 B
Python
Executable File
from django.contrib import admin
|
|
from .models import PhotoGroup, Photo, PhotoLog
|
|
|
|
|
|
admin.site.register(PhotoGroup)
|
|
admin.site.register(Photo)
|
|
admin.site.register(PhotoLog)
|
|
|