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.
15 lines
442 B
15 lines
442 B
from django.contrib import admin
|
|
# Register your models here.
|
|
from .models import OAuthUser, OAuthConfig
|
|
|
|
|
|
class OAuthUserAdmin(admin.ModelAdmin):
|
|
list_display = ('id', 'author', 'nikename', 'type', 'picture', 'email',)
|
|
list_display_links = ('id', 'nikename')
|
|
list_filter = ('author', 'type',)
|
|
|
|
|
|
class OAuthConfigAdmin(admin.ModelAdmin):
|
|
list_display = ('type', 'appkey', 'appsecret', 'is_enable')
|
|
list_filter = ('type',)
|