Tagged Questions
6
votes
1answer
2k views
Why are read-only form fields in Django a bad idea?
I've been looking for a way to create a read-only form field and every article I've found on the subject comes with a statement that "this is a bad idea". Now for an individual form, I can understand ...
4
votes
1answer
717 views
Using a custom form in a modelformset factory?
I'd like to be able to use a customized form in a modelformset_factory. For example:
models.py
class Author(models.Model):
name = models.CharField()
address = models.CharField()
class ...
2
votes
1answer
55 views
Filtering a django choicefield in admin form on the basis of a value of another choicefield in the same form
In the admin form, how do you filter a django choicefield on the basis of value of another choicefield.
For example, if a choicefield is having "fruits" and "vegetables", then on selection of fruits, ...
1
vote
1answer
60 views
picking the rows to be in a queryset
I'm building a page where the users can choose which rows to edit. After they select their rows and hit "edit" I'd like to present them with a modelformset_factory showing an editable version of all ...
1
vote
1answer
476 views
Django Formset validation with an optional ForeignKey field
Having a ModelFormSet built with modelformset_factory and using a model with an optional ForeignKey, how can I make empty (null) associations to validate on that form?
Here is a sample code:
### ...
1
vote
1answer
244 views
How can I limit the available choices for a foreign key field in a django modelformset?
Application:
This is a workshop proposal system for a conference. A user can create presenters and workshops, and link them together. Each user should only have access to the presenters and workshops ...
0
votes
1answer
47 views
How to create a model and its generic relations on one page
I have this setup:
class Observation(models.Model):
start_time = models.DateTimeField()
measurements = generic.GenericRelation(Measurement)
class Measurement(models.Model):
variable = ...
0
votes
2answers
554 views
Django- How do I add hidden fields to a formset and populate them?
I'm working on a project that has a RSVP form on it. Right now I have it functioning to process their basic info including number of additional guests they are bringing with them. This number is then ...
0
votes
2answers
185 views
Intermediate model formset validation
I am wondering how to specify some constraints on intermediate model formset.
I have 3 classes in model:
Attribute, Product and AttributeValuation, which is intermediate for Attribute and Product:
...