mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-10 17:31:03 +00:00
13 lines
326 B
Python
13 lines
326 B
Python
from django.contrib import admin
|
|
|
|
from api.models import Application, Token
|
|
|
|
|
|
@admin.register(Application)
|
|
class ApplicationAdmin(admin.ModelAdmin):
|
|
list_display = ["id", "name", "website", "created"]
|
|
|
|
|
|
@admin.register(Token)
|
|
class TokenAdmin(admin.ModelAdmin):
|
|
list_display = ["id", "user", "application", "created"]
|