diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-11-03 13:23:35 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:21 +0100 |
commit | eef264579c63ab657ef1da51895a0e207d7ba4e6 (patch) | |
tree | 943104fdefe77a5fff6d0f7d8ca247bd22a76238 /ishtar_common/views.py | |
parent | ec1efecda48b3ed8888a00c94714573c0117b57c (diff) | |
download | Ishtar-eef264579c63ab657ef1da51895a0e207d7ba4e6.tar.bz2 Ishtar-eef264579c63ab657ef1da51895a0e207d7ba4e6.zip |
Import match page: add edit type link - Fix default - Fix for document import
Diffstat (limited to 'ishtar_common/views.py')
-rw-r--r-- | ishtar_common/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/views.py b/ishtar_common/views.py index 96c292c43..704894d52 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -1725,7 +1725,7 @@ class ImportOldListView(ImportListView): class ImportLinkView(IshtarMixin, LoginRequiredMixin, ModelFormSetView): template_name = 'ishtar/formset_import_match.html' model = models.TargetKey - page_name = _(u"Link unmatched items") + page_name = _("Link unmatched items") factory_kwargs = { 'extra': 0, } |