Commit 8ab4ba7d4838111c8e624bd69b5e8456543adca8
1 parent
572dcc62
temporarily removed argument->position form field
Showing
1 changed file
with
5 additions
and
4 deletions
entries/forms.py
| ... | ... | @@ -638,10 +638,11 @@ class ArgumentFormFactory(FormFactory): |
| 638 | 638 | ), |
| 639 | 639 | lambda n, cls: and_or_form_creator(_('Preferencja selekcyjna'), 'add-preference-{}'.format(n), field=cls.make_field(FormFactory.unique_name('preference_type', n))) |
| 640 | 640 | ), |
| 641 | - ( | |
| 642 | - None, None, | |
| 643 | - lambda n, cls: and_or_form_creator(_('Pozycja'), 'add-position-{}'.format(n), data_add='position'), | |
| 644 | - ), | |
| 641 | + # removing until we discuss whether this field is needed & how it should work | |
| 642 | + #( | |
| 643 | + # None, None, | |
| 644 | + # lambda n, cls: and_or_form_creator(_('Pozycja'), 'add-position-{}'.format(n), data_add='position'), | |
| 645 | + #), | |
| 645 | 646 | ( |
| 646 | 647 | 'phrase_type', |
| 647 | 648 | lambda: PhraseTypeFilter(help_text=_('Typ frazy, przez którą może być realizowany argument.')), |
| ... | ... |