Rohit Sharma
Rohit Sharma
Hello @lb- , I would like to work on this!
Thank you, @lb-. Could you please clarify the significance of this feature? From my current understanding, after implementing these changes, if we make a request to a path that has...
Oh thanks @jaap3, Now i understood the whole point.
The current changes I've made aren't working when using `CustomFormSubmission`. The problem arises because the `FormSubmission` model doesn't have direct access to these custom models. When a `CustomFormSubmission` is used,...
I've made progress with my `FormSubmissionBulkAction` class by updating it as follows: ``` class FormSubmissionBulkAction(BulkAction): @classproperty def models(cls): page = Page.objects.get(id=70).specific submission_class = page.get_submission_class() return [submission_class] ``` This works well...
See https://github.com/wagtail/wagtail/issues/11557#issuecomment-1959897859
@lb- I'm uncertain whether my approach is correct or not. Could you please provide your insights on this?
Thanks @laymonage, for your valuable feedback and suggestions. I've followed your recommendations, and everything is functioning correctly except for the **`search`** functionality. I'm encountering the same bug described in https://github.com/wagtail/wagtail/pull/11035#issuecomment-1807109543...
Thanks @laymonage, I followed your suggestions but the bug still persist!
Now everything is working well! Edit - A single test is failed. Trying to find out the reason!