mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 23:52:15 +08:00
8 lines
192 B
Python
Vendored
8 lines
192 B
Python
Vendored
from django.contrib import admin
|
|
from accounts.models import Profile
|
|
|
|
class ProfileAdmin(admin.ModelAdmin):
|
|
search_fields = ['user__username']
|
|
|
|
admin.site.register(Profile, ProfileAdmin)
|
|
|