feat(admin): register Coin model in admin site
Some checks are pending
Docker / build (push) Waiting to run
Some checks are pending
Docker / build (push) Waiting to run
Add the Coin model to the Django admin interface for easier management of coin data through the admin panel. This provides administrators with a graphical interface to directly view, edit, and maintain instances of the Coin model within the application.
This commit is contained in:
parent
bfba2be97a
commit
d87ed7bccc
1 changed files with 4 additions and 0 deletions
4
app/charts/admin.py
Normal file
4
app/charts/admin.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
from django.contrib import admin
|
||||
from .models import Coin
|
||||
|
||||
admin.site.register(Coin)
|
Loading…
Reference in a new issue