mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-18 14:57:00 +01:00
15 lines
322 B
Python
15 lines
322 B
Python
from django.contrib import admin
|
|
|
|
from apps.accounts.models import Account, AccountGroup
|
|
from apps.common.admin import SharedObjectModelAdmin
|
|
|
|
|
|
@admin.register(Account)
|
|
class AccountModelAdmin(SharedObjectModelAdmin):
|
|
pass
|
|
|
|
|
|
@admin.register(AccountGroup)
|
|
class AccountGroupModelAdmin(SharedObjectModelAdmin):
|
|
pass
|