diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-10-27 11:55:34 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:20:59 +0100 |
commit | 9169319cbc3137859aa0f33e70e56b0dbb0f3a38 (patch) | |
tree | cc39c3e69039af5bc7854602a4ec9c956e0b4316 /ishtar_common/widgets.py | |
parent | 058a9d943818504e27f2cdd3b546ad5cd8f2d4d8 (diff) | |
download | Ishtar-9169319cbc3137859aa0f33e70e56b0dbb0f3a38.tar.bz2 Ishtar-9169319cbc3137859aa0f33e70e56b0dbb0f3a38.zip |
Syndication - search UI
Diffstat (limited to 'ishtar_common/widgets.py')
-rw-r--r-- | ishtar_common/widgets.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py index 29165232a..05605a258 100644 --- a/ishtar_common/widgets.py +++ b/ishtar_common/widgets.py @@ -1191,6 +1191,7 @@ class DataTable(Select2Media, forms.RadioSelect): self.user = None self.gallery = gallery self.map = map + self.external_sources = None if self.col_prefix and not self.col_prefix.endswith("__"): self.col_prefix += "__" @@ -1318,6 +1319,7 @@ class DataTable(Select2Media, forms.RadioSelect): "loading": str(_("Loading...")), "remove": str(_("Remove")), "sname": name.replace("-", ""), + "external_sources": self.external_sources, "gallery": self.gallery, "use_map": self.map() if callable(self.map) else self.map, "multiple": self.multiple, |