mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-14 20:39:35 -06:00
9 lines
210 B
Python
9 lines
210 B
Python
from django.contrib import admin
|
|
|
|
from .models import Token
|
|
|
|
|
|
@admin.register(Token)
|
|
class TokenAdmin(admin.ModelAdmin):
|
|
list_display = ['user', 'key', 'created', 'expires', 'write_enabled', 'description']
|