4
votes
1answer
46 views
Complex forms in Django - what apps and Django/Python features should I look at?
There are a lot of complex forms in my project and I keep getting the feeling that I could be coding them much more elegantly and simply.
So my question is what are some good apps …
0
votes
1answer
36 views
How do you make a Django Form for a model and all of its children following a particular foreign key?
For example, lets say you want to create a ModelForm for Supervisor that also allows you to create or update 3 or more Underlings in the same form.
from django.db import models
cl …
1
vote
1answer
46 views
Customize HTML Output of Django ModelForm
I am trying to add multiple inline form items to a page using Djangos ModelForms. I need Select boxes bound to database models. The forms are formatted and placed in a tabular form …
0
votes
2answers
142 views
Django Formsets - form.is_valid() is False preventing formset validation
I'm am utilizing a formset to enable users subscribe to multiple feeds. I require a) Users chose a subscription by selecting a boolean field, and are also required to tag the subsc …
2
votes
1answer
56 views
How to access a forms instance in a modelformset django
In my view I create a formset of photos belonging to a specific article, this works brilliantly, and I am able to render and process the forms. However for the image field I would …
0
votes
0answers
12 views
Django forset populates with different objects when saving.
I display a formset, which has Forms populated by the objects returned by a queryset.
The problem is that before the user submits items are modified or added, such that the queryse …
1
vote
2answers
111 views
Django: How do I make fields non-editable by default in an inline model formset?
I have an inline model formset, and I'd like to make fields non-editable if those fields already have values when the page is loaded. If the user clicks an "Edit" button on that r …
