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 ...
3
votes
2answers
207 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 = ...
3
votes
2answers
910 views

Django Passing Custom Form Parameters to ModelFormset

Hey guys, My problem is similar to http://stackoverflow.com/questions/622982/django-passing-custom-form-parameters-to-formset/624013 Ive have these classes class Game(models.Model): home_team = ...
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, ...
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
490 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
1answer
73 views

How to get hold of a model instance from a model formset

I have created a formset from a model that has an ImageField inside it. Now when editing the formset I would like to show the image next to the other fields in the template so the user can see what ...
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
557 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
495 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
54 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
46 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
51 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
1answer
50 views

Django adding an attribute to a model formset

How do I go about adding a new class attribute for each for my fields in my formset? I was thinking it would be along these lines of code but the attribute fields does not exist in a formset object. ...
1
vote
2answers
110 views

Django: How to save a formset with a custom model form?

Trying to save a bunch of objects but with a custom form: class CustomForm(forms.ModelForm): class Meta: model = Widget complexify = models.BooleanField() When complexify is ...
1
vote
1answer
397 views

Django modelformset validation problem: how to use queryset in request.POST?

I am working with modelformset, and am a little stuck. I am passing, say 20 forms using modelformsetfactory. These forms are constructed and displayed in the page. When I return after the posting, I ...
1
vote
2answers
495 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
413 views

Django Model Formset Pre-Filled Value Problem

i'm trying to use model formsets with Django. When i load forms template, i see that it's filled-up with previous values. Is there a caching mechanism that i should stop, or what? Thanks for your ...
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
533 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
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 ...
1
vote
1answer
999 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
2answers
18 views

initialize modelformset with manytomanyfield

All, I am trying to initialize a modelformset with a manytomanyfield. A catch is that I do not know in advance the name of the manytomanyfield (nor the class it is bound to). Here are my models and ...
0
votes
0answers
19 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
132 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
90 views

Django model form set initial value setting

I noticed that when I pass a initial value to my model formset(lines 100-102), I am unable to POST the values of item from the 2nd formset onwards. By unable I mean that value of that field doesn't ...
0
votes
1answer
35 views

Pre-Populating Model-Formsets With Multiple Model Instances

I am building a football predictions app whilst learning django and have the following models: class Team(models.Model): Name = models.CharField(max_length=30) class Fixture(models.Model): ...
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
40 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
82 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
153 views

Django filter ModelFormSet field choices… different from limiting the Formset's queryset

I understand that it is possible to override the default queryset 'used' by the modelformset. This just limits the objects for which a form is created. I also found a Stack Overflow question about ...
0
votes
0answers
94 views

About formsets in Django

I'm getting frustrated about django formset working, I really searched the web for a solution, and I don't get clear at all about what's going on. First of all.. basically I want to embed a form. All ...
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
123 views

Django fieldsets problem on save

I did the following. Not sure if it's right: class FooAdmin(admin.ModelAdmin): fieldsets = ( # ... ) other_fieldsets = ( # ... ) def get_fieldsets (self, request, ...
0
votes
2answers
392 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
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: ...
0
votes
1answer
230 views

BaseInlineFormSet does not clean invalid characters

I am trying to clean my inline formset data. I have three rules: 1) must supply at least one name, 2) if you specify a name you must specify both a first and last, and 3) no spaces. When the data ...
0
votes
1answer
262 views

Django: ModelMultipleChoiceField won't save data

My modelform has a field with a ModelMultipleChoiceField that has a queryset to a Category object. The problem is the form submits, but the Category data doesn't save. Thoughts? Many thanks! Form: ...
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
377 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
3answers
2k views

Django: How to set initial values for a field in an inline model formset?

I have what I think should be a simple problem. I have an inline model formset, and I'd like to make a select field have a default selected value of the currently logged in user. In the view, I'm ...
0
votes
1answer
252 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 ...
0
votes
1answer
1k views

Add data to Django form class using modelformset_factory

I have a problem where I need to display a lot of forms for detail data for a hierarchical data set. I want to display some relational fields as labels for the forms and I'm struggling with a way to ...