summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 6e655776d..979b29b33 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -2844,8 +2844,9 @@ post_delete.connect(post_save_cache, sender=SupportType)
class Format(GeneralType):
class Meta:
- verbose_name = _(u"Format")
- verbose_name_plural = _(u"Formats")
+ verbose_name = _(u"Format type")
+ verbose_name_plural = _(u"Format types")
+ ordering = ['label']
post_save.connect(post_save_cache, sender=Format)
post_delete.connect(post_save_cache, sender=Format)