feat(admin): expand model registrations
Some checks are pending
Docker / build (push) Waiting to run
Some checks are pending
Docker / build (push) Waiting to run
Added several additional models to the Django admin interface, enhancing manageability and oversight for admins. This allows for streamlined administration of Dominance, P2Pool, Rank, Sfmodel, Social, and Withdrawal models. This update supports improved efficiency in monitoring and editing these entities.
This commit is contained in:
parent
7ada7f9d26
commit
7012c1a2b1
1 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
|||
from django.contrib import admin
|
||||
from .models import Coin
|
||||
from .models import Coin, Dominance, P2Pool, Rank, Sfmodel, Social, Withdrawal
|
||||
|
||||
admin.site.register(Coin)
|
||||
admin.site.register(Coin)
|
||||
admin.site.register(Dominance)
|
||||
admin.site.register(P2Pool)
|
||||
admin.site.register(Rank)
|
||||
admin.site.register(Sfmodel)
|
||||
admin.site.register(Social)
|
||||
admin.site.register(Withdrawal)
|
Loading…
Reference in a new issue