mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
from django import forms
|
|
from django.contrib import admin
|
|
from django.contrib.auth.admin import UserAdmin as UserAdmin_
|
|
from django.contrib.auth.models import User
|
|
|
|
from .models import Token, UserConfig
|
|
|
|
# Unregister the built-in UserAdmin so that we can use our custom admin view below
|
|
admin.site.unregister(User)
|
|
|
|
|
|
class UserConfigInline(admin.TabularInline):
|
|
model = UserConfig
|
|
readonly_fields = ('data',)
|
|
can_delete = False
|
|
verbose_name = 'Preferences'
|
|
|
|
|
|
@admin.register(User)
|
|
class UserAdmin(UserAdmin_):
|
|
list_display = [
|
|
'username', 'email', 'first_name', 'last_name', 'is_superuser', 'is_staff', 'is_active'
|
|
]
|
|
inlines = (UserConfigInline,)
|
|
|
|
|
|
class TokenAdminForm(forms.ModelForm):
|
|
key = forms.CharField(
|
|
required=False,
|
|
help_text="If no key is provided, one will be generated automatically."
|
|
)
|
|
|
|
class Meta:
|
|
fields = [
|
|
'user', 'key', 'write_enabled', 'expires', 'description'
|
|
]
|
|
model = Token
|
|
|
|
|
|
@admin.register(Token)
|
|
class TokenAdmin(admin.ModelAdmin):
|
|
form = TokenAdminForm
|
|
list_display = [
|
|
'key', 'user', 'created', 'expires', 'write_enabled', 'description'
|
|
]
|