Changes between Initial Version and Version 1 of Ticket #33703
- Timestamp:
- May 12, 2022, 1:43:20 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33703
- Property Easy pickings unset
- Property Has patch unset
-
Ticket #33703 – Description
initial v1 70 70 }}} 71 71 72 I see two possibility to fix it:72 I thought we had two options to fix this: 73 73 74 or 74 75 75 {{{ 76 76 def _get_form_for_get_fields(self, request, obj): … … 91 91 ... 92 92 }}} 93 94 BUT! My solution not works, we receive a recursion: 95 96 {{{ 97 in get_fields 98 call self._get_form_for_get_fields 99 100 in _get_form_for_get_fields 101 call self.get_form 102 103 in get_form 104 call self.get_fieldsets 105 106 in get_fieldsets 107 call self.get_fields (go to 1. step) 108 }}} 109 93 110 p.s. 94 111 this issue is easy to create, we already have 'contrib.admin' in "component select" in Issue-Creation-Form, unlike, for example, 'contrib.gis'.