mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
8 lines
141 B
Python
8 lines
141 B
Python
from django.contrib import admin
|
|
|
|
from statuses.models import Status
|
|
|
|
|
|
@admin.register(Status)
|
|
class StatusAdmin(admin.ModelAdmin):
|
|
pass
|