2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2024-09-22 23:37:25 +00:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
2024-09-23 08:25:27 +00:00
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
|
2023-04-04 16:39:45 +00:00
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.contrib import admin
|
2016-01-28 16:42:22 +00:00
|
|
|
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
|
|
|
|
2016-01-28 16:42:22 +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
|
|
|
|
2017-08-24 13:35:01 +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",)
|