moneropro/app/charts/admin.py
Kumi d87ed7bccc
Some checks are pending
Docker / build (push) Waiting to run
feat(admin): register Coin model in admin site
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.
2024-11-12 08:15:19 +01:00

4 lines
No EOL
84 B
Python

from django.contrib import admin
from .models import Coin
admin.site.register(Coin)