mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
11 lines
242 B
Python
11 lines
242 B
Python
from django.contrib import admin
|
|
|
|
from .models import AuthToken
|
|
|
|
|
|
@admin.register(AuthToken)
|
|
class AuthTokenAdmin(admin.ModelAdmin):
|
|
list_display = ("token", "created_at")
|
|
list_filter = ("created_at",)
|
|
ordering = ("-created_at",)
|