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
723 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 ...
3
votes
2answers
208 views

django inline formsets with custom form

I am using inline formsets. My model: class Author(models.Model): description = models.CharField(max_length=100) class Book(models.Model): author = models.ForeignKey(Author) details = ...
2
votes
1answer
74 views

modelformset __iter__ overloading problem

I'm writing the custom modelformset. I need that forms to be sorted by value of field "ordering". I overloaded __iter__ method of BaseFormSet in my child formset class. My class inherited from ...
2
votes
1answer
492 views

Django Model Formset With ManyToMany Inline

I would like to store groups of pages under different tags. So I create these models: class Page(models.Model): title = models.CharField(max_length=50) class Tag(models.Model): title = ...
2
votes
0answers
387 views

empty_form initial value for a modelformset_factory

I try to add initial values to the empty form of a modelformset_factory. FormSet = modelformset_factory(MyModel, extra=2) formset = FormSet(queryset=MyModel.objects.none(), initial=[{'foo': 'bar'}, ...
2
votes
2answers
560 views

django - How to cross check ModelAdmin and its inlines?

I have two models (ModelParent and ModelChild) with same m2m fields on Subject model. ModelChild has a foreign key on ModelParent and ModelChild is defined as inline for ModelParent on admin page. ...
2
votes
1answer
496 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 like to display the ...
2
votes
4answers
2k 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 row, it would become ...
1
vote
1answer
56 views

Django Curry Error

I am trying to pass an argument asins to each form in a modelformset, so i followed the solution described here http://stackoverflow.com/a/624013/389453, heres the code VariationFormSet = ...
1
vote
1answer
47 views

Django - Rating on Multiple Criteria: Model Formset?

I have a content that I'd like to rate on multiple criteria. Imagine this kind of model: class Content(models.Model): name = models.CharField(max_length=50) class Criteria(models.Model): name = ...
1
vote
1answer
52 views

Empty ModelFormset in Django's FormWizard

I'm using Django's FormWizard. It works fine but I'm having trouble getting any empty model formset to display correctly. I have a model called Domain. I'm creating a ModelFormset like this: ...
1
vote
2answers
499 views

django inline formsets with a complex model for the nested form

Say I have django model that looks something like this: class Order(models.Model): number = models... date = models... class OrderLine(models.Model): # One or more lines per order order = ...
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
159 views

Django Formset populating when it should be blank

My goal is to have a formset that lists 5 versions of the same form. On submit the form should create the filled out forms in the DB. My issue is that the forms come repopulated with data. Which is ...
1
vote
1answer
535 views

Management form error while using modelformsets ('ManagementForm data is missing or has been tampered with')

I have a models.py class as below class Educational_Qualification(models.Model): user = models.ForeignKey(User) exam = models.CharField(max_length=40) pass_month = ...
1
vote
1answer
1k views

Changing data in a django modelform

I get data in from POST and validate it via this standard snippet: entry_formset = EntryFormSet(request.POST, request.FILES, prefix='entries') if entry_formset.is_valid(): .... The EntryFormSet ...
0
votes
0answers
22 views

Can I remove a (valid, saved) form from a Django formset, re-presenting the now-smaller formset with problems back to the user?

I presented the user with a formset with all forms attached to existing instances. The user edited the forms, leaving at least 1 valid, but others with problems. I'd like to .save() the valid one, ...
0
votes
1answer
139 views

Django FormWizard - How do you dynamically create a formset based on previous step

I've seen this post and it's not working (in part because it's dated). I've also studied the source tree to no avail (the tests helped) but I can't find my answer. What I'm looking to do is get a ...
0
votes
0answers
50 views

Django: Passing custom paramter to formset (BaseModeFormSet) clean method

I want to pass a custom parameter to my clean method in MyModelFormSet(BaseModelFormSet) class. I create my formset using modelformset_factory (formset = MyModelFormSet,...) and I want to pass this ...
0
votes
0answers
41 views

Django Formset to update two models with a One-to-One relationship

I have two models each with it's own Modelform. class Address(models.Model): street = models.CharField(max_length = 255) zipcode = models.CharField(max_length = 10) city = ...
0
votes
2answers
83 views

formset of inline formsets in django 1.3+

I have a product model, and a price model. The price model has a FK to the product model. There may be multiple prices (depending on the quantity of units sold). Previous to django 1.2.5 ...
0
votes
1answer
72 views

Django forms question

I don't have an example because I'm not working on anything relevant right now, but am still curious, after reading the docs about formsets: What is a best practice for having a single view with ...
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
393 views

Inline Formset Object Not Iterable

My ultimate goal here is to save Action modelforms for a given website (the foreign key). After form validation, I then want to sum the points for all the individual Actions and confirm that it's ...
0
votes
2answers
557 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
186 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: ...
0
votes
1answer
152 views

Django - Admin - Applying 'label_suffix' for Models

Is to possible to configure 'label_suffix' other than (:) for all the models in my admin site?
0
votes
2answers
384 views

Get the ID of a field widget in a formset

I want to customize the layout of forms in a formset (that is, I don't want to use .as_table() or .as_p() and the like). I'm trying to get the name of a form field for use in its label's for ...
0
votes
1answer
254 views

Model Formset overwrites existing entries instead of adding

I have a Model Formset that should take files sent via POST and add them to the database. However, the form includes the IDs of files already in the database, which leads to information being ...