10 lines
207 B
Python
10 lines
207 B
Python
from django.contrib import admin
|
|
|
|
from profiles.models import UserProfile
|
|
|
|
|
|
@admin.register(UserProfile)
|
|
class UserProfileAdmin(admin.ModelAdmin):
|
|
date_hierarchy = "created"
|
|
ordering = ("-created",)
|