10 lines
280 B
Python
10 lines
280 B
Python
from django.contrib import admin
|
|
from .models import Profile
|
|
|
|
@admin.register(Profile)
|
|
class ProfileAdmin(admin.ModelAdmin):
|
|
"""
|
|
Configuration de l'interface admin pour les profils.
|
|
"""
|
|
list_display = ('user', 'secret_note')
|
|
search_fields = ('user__username',) |