diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-07 12:08:11 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-02-07 12:08:11 +0100 |
commit | ce34407c0cf0a75eea31bc25dbf7c7bc789e105b (patch) | |
tree | aa759d3160643469edab5bf5a514eb3abf54c9da /ishtar_common/models.py | |
parent | b593a862e2310ed10aff6c152cc87cc9f768bd83 (diff) | |
download | Ishtar-ce34407c0cf0a75eea31bc25dbf7c7bc789e105b.tar.bz2 Ishtar-ce34407c0cf0a75eea31bc25dbf7c7bc789e105b.zip |
Admin: improve importer column form
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index c9903525d..90e2bd6f6 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1777,6 +1777,7 @@ class ImporterType(models.Model): class Meta: verbose_name = _(u"Importer - Type") verbose_name_plural = _(u"Importer - Types") + ordering = ('name',) def __unicode__(self): return self.name |