Changes between Initial Version and Version 1 of Ticket #33703


Ignore:
Timestamp:
May 12, 2022, 1:43:20 PM (2 years ago)
Author:
Maxim Danilov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33703

    • Property Easy pickings unset
    • Property Has patch unset
  • Ticket #33703 – Description

    initial v1  
    7070}}}
    7171
    72 I see two possibility to fix it:
     72I thought we had two options to fix this:
    7373
    74 or
     74
    7575{{{
    7676    def _get_form_for_get_fields(self, request, obj):
     
    9191        ...
    9292}}}
     93
     94BUT! My solution not works, we receive a recursion:
     95
     96{{{
     97in get_fields
     98  call self._get_form_for_get_fields
     99
     100in _get_form_for_get_fields
     101  call self.get_form
     102
     103in get_form
     104  call self.get_fieldsets
     105
     106in get_fieldsets
     107  call self.get_fields (go to 1. step)
     108}}}
     109
    93110p.s.
    94111this issue is easy to create, we already have 'contrib.admin' in "component select" in Issue-Creation-Form, unlike, for example, 'contrib.gis'.
Back to Top