first commit
This commit is contained in:
12
core/apps/accounts/admin/likes.py
Normal file
12
core/apps/accounts/admin/likes.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.contrib import admin
|
||||
from unfold.admin import ModelAdmin
|
||||
|
||||
from core.apps.accounts.models import LikesModel
|
||||
|
||||
|
||||
@admin.register(LikesModel)
|
||||
class LikesAdmin(ModelAdmin):
|
||||
list_display = (
|
||||
"id",
|
||||
"__str__",
|
||||
)
|
||||
Reference in New Issue
Block a user