Tagged Questions

2
votes
1answer
73 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
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
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 = ...
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
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
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
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
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 ...