From e9affbc1cf2b7588fceeb75ef4d33df841f43380 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Wed, 16 Dec 2020 22:33:03 +0100 Subject: [PATCH] revert the changes that caused issues in the admin. --- src/documents/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/documents/models.py b/src/documents/models.py index cede29b8e..3a6d155ed 100755 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -78,6 +78,9 @@ class Correspondent(MatchingModel): # better safe than sorry. SAFE_REGEX = re.compile(r"^[\w\- ,.']+$") + class Meta: + ordering = ("name",) + class Tag(MatchingModel):