mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-21 13:57:57 -05:00
MediaCMS backend, initial commit
This commit is contained in:
38
users/admin.py
Normal file
38
users/admin.py
Normal file
@@ -0,0 +1,38 @@
|
||||
from django.contrib import admin
|
||||
|
||||
from .models import User
|
||||
|
||||
|
||||
class UserAdmin(admin.ModelAdmin):
|
||||
search_fields = ["email", "username", "name"]
|
||||
exclude = (
|
||||
"user_permissions",
|
||||
"title",
|
||||
"password",
|
||||
"groups",
|
||||
"last_login",
|
||||
"is_featured",
|
||||
"location",
|
||||
"first_name",
|
||||
"last_name",
|
||||
"media_count",
|
||||
"date_joined",
|
||||
"is_staff",
|
||||
"is_active",
|
||||
)
|
||||
list_display = [
|
||||
"username",
|
||||
"name",
|
||||
"email",
|
||||
"logo",
|
||||
"date_added",
|
||||
"is_superuser",
|
||||
"is_editor",
|
||||
"is_manager",
|
||||
"media_count",
|
||||
]
|
||||
list_filter = ["is_superuser", "is_editor", "is_manager"]
|
||||
ordering = ("-date_added",)
|
||||
|
||||
|
||||
admin.site.register(User, UserAdmin)
|
||||
Reference in New Issue
Block a user