mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
fb6c409a9a
I can taste how close follow is to working.
24 lines
514 B
Python
24 lines
514 B
Python
from django.contrib import admin
|
|
|
|
from users.models import Domain, Identity, User, UserEvent
|
|
|
|
|
|
@admin.register(Domain)
|
|
class DomainAdmin(admin.ModelAdmin):
|
|
list_display = ["domain", "service_domain", "local", "blocked", "public"]
|
|
|
|
|
|
@admin.register(User)
|
|
class UserAdmin(admin.ModelAdmin):
|
|
pass
|
|
|
|
|
|
@admin.register(UserEvent)
|
|
class UserEventAdmin(admin.ModelAdmin):
|
|
pass
|
|
|
|
|
|
@admin.register(Identity)
|
|
class IdentityAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ["id", "handle", "actor_uri", "name", "local"]
|