diff options
-rw-r--r-- | CHANGES.md | 1 | ||||
-rw-r--r-- | ishtar_common/models.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md index 59afd4e59..a904e5167 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -43,6 +43,7 @@ Ishtar changelog - Sheet: - fix treatment and file treatment sheet display (bad QR code link) - Operation - statistics number of parcels fix + - basket: display shared with by alpha order v4.0.42 - 2023-01-25 -------------------- diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 00d94a1f2..d4ea72dea 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3407,6 +3407,7 @@ class IshtarUser(FullSearch): class Meta: verbose_name = _("Ishtar user") verbose_name_plural = _("Ishtar users") + ordering = ("person",) ADMIN_SECTION = _("Directory") def __str__(self): |