diff options
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"] |