feat(admin): register Coin model in admin site
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:
Kumi 2024-11-12 08:15:19 +01:00
parent bfba2be97a
commit d87ed7bccc
Signed by: kumi
GPG key ID: ECBCC9082395383F

4
app/charts/admin.py Normal file
View file

@ -0,0 +1,4 @@
from django.contrib import admin
from .models import Coin
admin.site.register(Coin)