12 lines
436 B
Python
12 lines
436 B
Python
from django.contrib import admin
|
|
from authentification.models import Departement, Employe
|
|
|
|
@admin.register(Departement)
|
|
class DepartementAdmin(admin.ModelAdmin):
|
|
list_display = ('nom',)
|
|
|
|
@admin.register(Employe)
|
|
class EmployeAdmin(admin.ModelAdmin):
|
|
list_display = ('user', 'matricule', 'departement', 'fonction', 'date_embauche')
|
|
list_filter = ('departement', 'fonction')
|
|
search_fields = ('user__username', 'matricule') |