dynamic-django-forms icon indicating copy to clipboard operation
dynamic-django-forms copied to clipboard

A simple, reusable Django app that allows you to build (and respond to) dynamic forms. Perfect for surveys, position applications, etc.

Results 10 dynamic-django-forms issues
Sort by recently updated
recently updated
newest added

Setting the aforementioned attributes for a text area widget in the admin page has no effect, this https://github.com/askvortsov1/dynamic-django-forms/blob/012612323d28f284004d494bb320fa09e99cc445/dynamic_forms/utils.py#L55-L58 should be changed to something like: ```python def _process_text_area(field_json): field = forms.CharField()...

I am trying to understand if I need to do a rest request after the form sending (with some data) how I can do using this package. Someone can help...

So I integrated this package with https://grappelliproject.com/ As doesn't use bootstrap some things are broken, this css fix it: ``` td a { position: relative; top: 1px; } table.grp-table tbody...

Now it is a bootstrap 4.3.1 ideally it is better to bump 5.1.2 but to avoid issues is 4.6 as the latest for that branch. Maybe also jquery for the...

I tried to have multiple FormField in the same model, but I found some issues: - formbuilder.html use a static id (fb-editor) - the script are included multiple times I...

While using ResponseField The json that i stored in it was `'{"number-1611604938150":"245"}'` But during fetching the data again, it changes to `"{'number-1611604938150': '245'}"` while the expected output was: `"{\"number-1611604938150\": \"245\"}"`...

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.5 to 1.26.18. Release notes Sourced from urllib3's releases. 1.26.18 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other"...

dependencies

I would like to understand if there is an opportunity to add custom validators to the field

I receive the error both in the example project and my own code. Using latest Django (4.1)

So, the following is mentioned in the docs: > Responses cannot be changed after submission Now, that seems clear and yet it seems like a necessary feature, so i just...