mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-08-04 14:51:06 +02:00
Django admin management
This commit is contained in:
@@ -1,3 +1,29 @@
|
||||
from django.contrib import admin
|
||||
from django.contrib.auth.admin import admin, UserAdmin
|
||||
from polymorphic.admin import PolymorphicParentModelAdmin, PolymorphicChildModelAdmin
|
||||
from member.models import TFJMUser, AbstractDocument, Document, Solution, Synthesis
|
||||
|
||||
# Register your models here.
|
||||
|
||||
@admin.register(TFJMUser)
|
||||
class TFJMUserAdmin(UserAdmin):
|
||||
list_display = ('email', 'first_name', 'last_name', 'role', )
|
||||
|
||||
|
||||
@admin.register(AbstractDocument)
|
||||
class AbstractDocumentAdmin(PolymorphicParentModelAdmin):
|
||||
child_models = (Document, Solution, Synthesis,)
|
||||
polymorphic_list = True
|
||||
|
||||
|
||||
@admin.register(Document)
|
||||
class DocumentAdmin(PolymorphicChildModelAdmin):
|
||||
pass
|
||||
|
||||
|
||||
@admin.register(Solution)
|
||||
class SolutionAdmin(PolymorphicChildModelAdmin):
|
||||
pass
|
||||
|
||||
|
||||
@admin.register(Synthesis)
|
||||
class SynthesisAdmin(PolymorphicChildModelAdmin):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user