From cf3fa50b55cb1ddd88921fc25b054b8cb5e8b38c Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Wed, 16 Dec 2020 21:08:03 +0100 Subject: [PATCH] these changes shouldn't have been commited at all. my bad. --- src/documents/admin.py | 2 +- .../migrations/1009_auto_20201216_2005.py | 29 +++++++++++++++++++ src/documents/models.py | 5 ++-- 3 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 src/documents/migrations/1009_auto_20201216_2005.py diff --git a/src/documents/admin.py b/src/documents/admin.py index 6ec3b736e..78437f91c 100755 --- a/src/documents/admin.py +++ b/src/documents/admin.py @@ -69,7 +69,7 @@ class DocumentAdmin(admin.ModelAdmin): filter_horizontal = ("tags",) - ordering = ["-created", "correspondent"] + ordering = ["-created"] date_hierarchy = "created" diff --git a/src/documents/migrations/1009_auto_20201216_2005.py b/src/documents/migrations/1009_auto_20201216_2005.py new file mode 100644 index 000000000..5e8302bb0 --- /dev/null +++ b/src/documents/migrations/1009_auto_20201216_2005.py @@ -0,0 +1,29 @@ +# Generated by Django 3.1.4 on 2020-12-16 20:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '1008_auto_20201216_1736'), + ] + + operations = [ + migrations.AlterModelOptions( + name='correspondent', + options={'ordering': ('name',)}, + ), + migrations.AlterModelOptions( + name='documenttype', + options={'ordering': ('name',)}, + ), + migrations.AlterModelOptions( + name='savedview', + options={'ordering': ('name',)}, + ), + migrations.AlterModelOptions( + name='tag', + options={'ordering': ('name',)}, + ), + ] diff --git a/src/documents/models.py b/src/documents/models.py index 02a293eeb..cede29b8e 100755 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -11,7 +11,6 @@ import dateutil.parser from django.conf import settings from django.contrib.auth.models import User from django.db import models -from django.db.models.functions import Lower from django.utils import timezone from documents.file_handling import archive_name_from_filename @@ -61,7 +60,7 @@ class MatchingModel(models.Model): class Meta: abstract = True - ordering = (Lower("name"),) + ordering = ("name",) def __str__(self): return self.name @@ -307,7 +306,7 @@ class SavedView(models.Model): class Meta: - ordering = (Lower("name"),) + ordering = ("name",) user = models.ForeignKey(User, on_delete=models.CASCADE) name = models.CharField(max_length=128)