diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-11-15 16:37:42 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:20:59 +0100 |
commit | e3ce9c77d36db4510076b677ec7ce1e0021a51f8 (patch) | |
tree | edb1258d180c35e73a10ab7120c69d81b3925d44 /ishtar_common/models.py | |
parent | 905dfbb0ebb91af7b7acaae256306f178863c57f (diff) | |
download | Ishtar-e3ce9c77d36db4510076b677ec7ce1e0021a51f8.tar.bz2 Ishtar-e3ce9c77d36db4510076b677ec7ce1e0021a51f8.zip |
Syndication - serialization - display sheet operation
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 59248fa43..442e67429 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3619,7 +3619,7 @@ class Document( _TABLE_COLS = [ "title", - "source_type", + "source_type__label", "cache_related_label", "authors__cached_label", "associated_url", @@ -3658,6 +3658,7 @@ class Document( COL_LABELS = { "authors__cached_label": _("Authors"), "complete_identifier": _("Identifier"), + "source_type__label": _("Type") } CACHED_LABELS = ["cache_related_label"] |