Kumi
d87ed7bccc
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.
4 lines
No EOL
84 B
Python
4 lines
No EOL
84 B
Python
from django.contrib import admin
|
|
from .models import Coin
|
|
|
|
admin.site.register(Coin) |