made a demo version of the project
This commit is contained in:
parent
3ed70ba317
commit
030c03b320
13 changed files with 186 additions and 720 deletions
|
|
@ -1,3 +1,10 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from .models import Album
|
||||
|
||||
# Register your models here.
|
||||
|
||||
class AlbumAdmin(admin.ModelAdmin):
|
||||
list_display = ['id', 'image', 'is_verified']
|
||||
|
||||
admin.site.register(Album, AlbumAdmin)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue