You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
343 B
14 lines
343 B
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from .models import OAuthUser
|
|
|
|
|
|
class OAuthUserAdmin(admin.ModelAdmin):
|
|
list_display = ('id', 'author', 'nikename', 'type', 'picture', 'email',)
|
|
list_display_links = ('id', 'nikename')
|
|
list_filter = ('author', 'type',)
|
|
|
|
|
|
admin.site.register(OAuthUser, OAuthUserAdmin)
|