mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-04-23 07:02:15 +00:00
30 lines
785 B
Python
30 lines
785 B
Python
from django.contrib.auth.admin import admin, UserAdmin
|
|
from polymorphic.admin import PolymorphicParentModelAdmin, PolymorphicChildModelAdmin
|
|
from member.models import TFJMUser, AbstractDocument, Document, Solution, Synthesis
|
|
|
|
|
|
@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
|