Skip to content
Snippets Groups Projects
Unverified Commit 5552f9b8 authored by ThomasBidot's avatar ThomasBidot Committed by GitHub
Browse files

Ordering students by updated_date

parent 0fc7003d
No related branches found
No related tags found
9 merge requests!58Hamza,!52Hamza,!54Add field "en attentes" in participations options,!51Hamza,!48Hamza,!45Hamza,!40Solve public permission files on AWS,!36Notifications for Sec-Gen,!34Dev-> Master (ordering students by updated_date, school filter, export_csv for visits)
...@@ -50,5 +50,5 @@ class StudentAdmin(ProfileAdminMixin, admin.ModelAdmin,ExportCsvMixin): ...@@ -50,5 +50,5 @@ class StudentAdmin(ProfileAdminMixin, admin.ModelAdmin,ExportCsvMixin):
list_filter = (('school',MultiSelectFieldListFilter), 'year', 'registration__validated') list_filter = (('school',MultiSelectFieldListFilter), 'year', 'registration__validated')
class Meta: # noqa class Meta: # noqa
model = Student model = Student
ordering = ['updated_date'] ordering = ['-updated_date']
actions = ["export_as_csv"] actions = ["export_as_csv"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment