mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-26 03:31:26 +08:00
11 lines
247 B
Python
11 lines
247 B
Python
# -*- coding: utf-8 -*-
|
|
from django.contrib import admin
|
|
|
|
from .models import UserProfile
|
|
|
|
|
|
@admin.register(UserProfile)
|
|
class UserProfileAdmin(admin.ModelAdmin):
|
|
list_display = ('id', 'user', 'subsonic_api_token')
|
|
list_filter = ('user',)
|