Sith/core/admin.py

63 lines
1.8 KiB
Python
Raw Normal View History

#
# Copyright 2023 © AE UTBM
# ae@utbm.fr / ae.info@utbm.fr
#
# This file is part of the website of the UTBM Student Association (AE UTBM),
# https://ae.utbm.fr.
#
# You can find the source code of the website at https://github.com/ae-utbm/sith3
#
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
# OR WITHIN THE LOCAL FILE "LICENSE"
#
#
2024-06-24 11:07:36 +00:00
from django.contrib import admin
from django.contrib.auth.models import Group as AuthGroup
2015-11-18 08:44:06 +00:00
2024-08-09 12:05:09 +00:00
from core.models import Group, OperationLog, Page, SithFile, User
2015-11-18 08:44:06 +00:00
admin.site.unregister(AuthGroup)
2024-07-29 22:56:13 +00:00
@admin.register(Group)
class GroupAdmin(admin.ModelAdmin):
list_display = ("name", "description", "is_meta")
list_filter = ("is_meta",)
search_fields = ("name",)
2015-11-18 08:44:06 +00:00
2018-10-04 19:29:19 +00:00
2022-12-19 19:55:33 +00:00
@admin.register(User)
2024-07-29 22:56:13 +00:00
class UserAdmin(admin.ModelAdmin):
2022-12-19 19:55:33 +00:00
list_display = ("first_name", "last_name", "username", "email", "nick_name")
2024-07-29 22:56:13 +00:00
autocomplete_fields = (
"godfathers",
"home",
"profile_pict",
"avatar_pict",
"scrub_pict",
2018-10-04 19:29:19 +00:00
)
2017-10-10 21:33:15 +00:00
search_fields = ["first_name", "last_name", "username"]
2018-10-04 19:29:19 +00:00
@admin.register(Page)
class PageAdmin(admin.ModelAdmin):
2022-12-19 19:55:33 +00:00
list_display = ("name", "_full_name", "owner_group")
2024-07-29 22:56:13 +00:00
search_fields = ("name",)
autocomplete_fields = ("lock_user", "owner_group", "edit_groups", "view_groups")
2018-10-04 19:29:19 +00:00
2017-06-12 07:42:03 +00:00
2016-11-25 12:47:09 +00:00
@admin.register(SithFile)
class SithFileAdmin(admin.ModelAdmin):
2022-12-19 19:55:33 +00:00
list_display = ("name", "owner", "size", "date", "is_in_sas")
2024-07-29 22:56:13 +00:00
autocomplete_fields = ("parent", "owner", "moderator")
search_fields = ("name", "parent__name")
2024-08-09 12:05:09 +00:00
@admin.register(OperationLog)
class OperationLogAdmin(admin.ModelAdmin):
list_display = ("label", "operator", "operation_type", "date")
search_fields = ("label", "date", "operation_type")
autocomplete_fields = ("operator",)