8 lines
178 B
Python
8 lines
178 B
Python
from django.contrib import admin
|
|
from .models import UserProfile
|
|
|
|
|
|
@admin.register(UserProfile)
|
|
class UserProfileAdmin(admin.ModelAdmin):
|
|
list_display = ("user", "employee")
|