From 96c5ec1f2cec300a3dc6441a059043e08759034d Mon Sep 17 00:00:00 2001 From: Kasia Krasnowska <kasia.krasnowska@gmail.com> Date: Thu, 2 Dec 2021 10:47:37 +0100 Subject: [PATCH] temporarily removed argument->position form field --- entries/forms.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/entries/forms.py b/entries/forms.py index 2ea7818..93afe86 100644 --- a/entries/forms.py +++ b/entries/forms.py @@ -638,10 +638,11 @@ class ArgumentFormFactory(FormFactory): ), lambda n, cls: and_or_form_creator(_('Preferencja selekcyjna'), 'add-preference-{}'.format(n), field=cls.make_field(FormFactory.unique_name('preference_type', n))) ), - ( - None, None, - lambda n, cls: and_or_form_creator(_('Pozycja'), 'add-position-{}'.format(n), data_add='position'), - ), + # removing until we discuss whether this field is needed & how it should work + #( + # None, None, + # lambda n, cls: and_or_form_creator(_('Pozycja'), 'add-position-{}'.format(n), data_add='position'), + #), ( 'phrase_type', lambda: PhraseTypeFilter(help_text=_('Typ frazy, przez którą może być realizowany argument.')), -- GitLab