In Django, a formset is a layer of abstraction to work with multiple forms on the same page. `modelformsets` are formsets enhanced to work with Django models.
0
votes
1answer
24 views
Update selected objects from ListView in Django
I have a ListView in which I list all objects in a table. Every row has a checkbox. I am trying to update the objects whose checkbox is marked with a formset in another view, but I don't know how to ...
1
vote
1answer
21 views
Multiple model formsets in Django
I have a modelformset AddressFormSet = modelformset_factory(Address). In my view I assign this formset to different context variables, but they seem to be duplicated. The input names are the same.
...
0
votes
1answer
62 views
Django inline formset validation passes but no objects are saved
I have this form:
class ServiceTargetForm(forms.ModelForm):
class Meta:
model = ServiceTarget
fields=('target_type', 'target_value', 'target_threshold')
all the fields are ...
0
votes
1answer
42 views
MultiValueDictKeyError in django modelformset_factory
I'm trying to imeplement an edit formset. Then, i'm instancing the objects in the formset using modelformset_factory. When the request isn't POST, the formset loads perfectly, but, if the request is ...
0
votes
1answer
45 views
Django modelformset order_by not working
I want to use a Django (1.4) modelformset in which, when the formset is loaded the forms will be arranged by a exam_date field I have in my model. To do this I've created the following simple ...
0
votes
1answer
61 views
django ModelFormSet returns with errors, want to display all forms except the empty ones
Using django 1.4, I have a ModelFormSet with no initial instances and extra and max set to 6:
# forms.py
ChildFormSet = modelformset_factory(Child, formset=FirstRequiredModelFormSet, ...
1
vote
1answer
67 views
Django: Formset for adding captions to uploaded images
I'm using Django and am trying to implement, what I would assume, is a fairly common feature in image uploads. I want to generate a formset (maybe modelformset?) for adding a caption to each Image ...
0
votes
1answer
44 views
how to differentiate between already created and new objects in the template while using model formset
I am not quite sure about if i am taking the right approach to accomplish this. What i want is to (change the css for) / (use some jQuery methods on) the form elements rendered by the modelformset ...
1
vote
0answers
127 views
Django: Complex Formset with multiple foreignKeys
I'm working on a project where users can vote on collections of books. My models look like this:
class Collection(models.Model):
id = models.AutoField(primary_key=True)
name = ...
0
votes
1answer
235 views
Django add extra field to a ModelForm generated from a Model
I'm developing a Django application.
My problem now is that I have to generate a FormSet from a model, but I also need to insert an "extra value" for every form.
In the specific, I have this JApplet ...
0
votes
1answer
68 views
Formset with variable number of empty forms
I hope this is clear - I would think it's a pretty standard thing to need to do.
I want to create a formset with a number of empty forms, but the number of blank forms needs to vary each time the ...
1
vote
0answers
90 views
Django - formset unique_together delete add
Let's consider these models
class Session(models.Model):
staff = models.ForeignKey(User, verbose_name='Supplier')
start_time = models.DateTimeField(_('start'))
end_time = ...
0
votes
1answer
619 views
Django Formsets: ManagementForm data is missing or has been tampered with
I am using inline formsets. I have a main form application. Then 2 formsets employ and qual.
When I run my view. I get an error saying ManagementForm data is missing or has been tampered with
Here ...
1
vote
1answer
89 views
Django Forms - Relating Objects (Model Formsets?)
Say I have something like this:
class Product(models.Model)
name = models.CharField()
description models.TextField()
class Image(models.Model)
product = models.ForeignKey(Product, ...
3
votes
1answer
205 views
modelformset_factory does not honors extra parameter
Django: 1.4.1
Model:
class Hoja(models.Model):
nombre = models.CharField(max_length=200) # requerido
class Linea(models.Model):
hoja = models.ForeignKey(Hoja) # requerido
nombre = ...
1
vote
1answer
145 views
Django WizardView with both ModelForm and ModelFormSet (this one not rendering)
I am trying to create a FormWizard, so that a user enters a 'date' only once (on step 1) and then (on step 2), enters some names with associated amounts.
For each 'name' and associated 'amount', I ...
0
votes
1answer
73 views
Creating modelformset instances initialised from database objects
I have a setup at the moment with a series of Objects in my database of type CellType.
What I seem to need is the inline formset, which apparently simplifies working with foreign key relationships ...
0
votes
1answer
155 views
Django: IntegrityError on Model FormSet - Excluding required M2M field
So I have a modelformset for a House model, which has an owners manytomany field, I'm excluding the owners field due to the fact that I want it to just automatically save the currently logged in users ...
1
vote
2answers
164 views
Django formset access initial data in template
I have a Django formset with a set of initial data which loads a foreignkey relation object into the initial form:
{{ cellcountformset.management_form }}
{% for form in cellcountformset %}
<div ...
0
votes
0answers
49 views
Ordering the forms within a formset? (How to override __iter__())
deals_formset_factory = modelformset_factory(Deal, form=DealCForm, extra=1, can_delete=True, max_num=5)
deals_formset = deals_formset_factory(queryset=query)
Is there a way to say the one extra ...
1
vote
0answers
126 views
Django: setting values for inline forms before save
I have a problem concerning Django inlines within the admin interface.
I have two classes: List and ListElement defined as follows:
class List(models.Model):
pass
class ...
0
votes
0answers
41 views
Initial value is field value on a model for ModelForm used in ModelFormSet
Creating an exercise tracker where exercise has multiple values(weight, reps) to track, and each exercise value has the goal value and the "actual" value of how a person did.
I'm attempting to ...
0
votes
0answers
38 views
respect ORDER for invalid formsets
I have to use a formset with can_order = True.
How can I render the formset according to the ORDER values if the formset is not valid?
models.py
LangFormSetModel = modelformset_factory( LANG, ...
1
vote
1answer
29 views
how do I know I am dealing with the extra (empty) form within a formset?
deals_formset_factory = modelformset_factory(Deal, form=DealForm, extra=1)
formset = deals_formset_factory(queryset=query, prefix='deals')
{% for fs in formset.forms %}
{{ fs.id }} ...
1
vote
3answers
112 views
Django - Opening time formset
Context
I need to build a formset to allow opening hours to be set for a week.
Status
Here is my model for opening times:
WEEKDAYS = [
(1, _("Monday")),
(2, _("Tuesday")),
(3, ...
0
votes
1answer
87 views
Using formset to display and validate many-to-many relationships
I have following database schema
class Ingredient(models.Model):
title = models.CharField(max_length=255)
class Recipe(models.Model):
# Many more fields that aren't important
# ...
...
0
votes
4answers
164 views
formset is valid but returns empty cleaned_data field
i have a formset that returns empty cleaned_data, even though the formset is valid.
my view is like this:
def edit_files(request):
file_formSet = formset_factory(FileUploadForm)
if ...
3
votes
1answer
113 views
Django - ManyToMany as hidden fields?
I've implemented a multiple image upload method but I'm wondering which fields/widgets to use to be able to pass the image ids along with the form.
The images are added asynchronously while filling ...
2
votes
1answer
106 views
Django forms from “Generic related” models
I have some models, connected with GenericForeignKey:
Class Main(models.Model)
filed_1 = models.CharField(max_length=20)
object_id = models.PositiveIntegerField()
content_type = ...
0
votes
2answers
539 views
Django: Using crispy styled formsets in a class based view
Hi Stackoverflow people,
I would like to style a formset with the crispy app, but it causes some grieve.
A very simple model should be presented four times.
class ItemPicture(models.Model):
...
0
votes
1answer
195 views
Validation of modelformsets from modelforms
One view I have is using a modelform with custom field cleaning. One type of cleaning is checking if the user is trying to submit a change to a field that is already set to the value, and it works ...
0
votes
2answers
650 views
Django inline formset error
I'm trying to add an inline formset to a form. Here's the minimal code for reproducing the error:
models.py
class Festival(Model):
desc = TextField(max_length=1000)
class ...
0
votes
1answer
60 views
Display a model field while editing others model fields
What is the most straightforward way to edit some fields from a batch of objects using a formset (see below), while displaying along other fields from these models objects?
For example:
I want to ...
1
vote
0answers
210 views
How to handle invalid deleted forms in formsets
If the user fills a form in formset incompletely and then marks it for deletion, my form handling dies horribly. The deleted forms prevent formset.cleaned_data from working as they don't validate and ...
1
vote
1answer
198 views
django modelformset exclude ID field
I have a modelformset that I've created in a view as such:
CarpoolFamilyInviteModelFormset = modelformset_factory(CarpoolFamilyInvite, fields=('family_name','family_email'), extra=3)
As you can ...
0
votes
1answer
326 views
Access parent object fields of save_formset and save_model
I have a ActionAdmin model, which is used as ActionAdminInline in the InvoiceAdmin model.
In InvoiceModel i override save_formset, to auto set some values. Setting the values for each Action instance ...
1
vote
1answer
356 views
raise forms.ValidationError not working
I have the following models:
class Project(models.Model):
title = models.CharField(max_length="100")
pub_date = models.DateField(auto_now_add=True, editable=False)
budget = ...
2
votes
1answer
662 views
formset, inlineformset_Factory and kwargs
I have a couple models lets call them Model A and Model B. There is a foreign key to A from B.
That is the cardinality between A and B is 1:n.
I have made a corresponding ModelForm for B called MF_B. ...
0
votes
2answers
312 views
Django formsets
I'm making a survey site with django. I am pretty newbie with django so I apologize in advance if I can not explain well. My question focuses on the following models:
class SurveyType(models.Model):
...
0
votes
2answers
655 views
Django modelformset_factory invalid, return request.POST data to forms
I want to return the data that has been entered back in place in the form using django modelformset_factory
view
from django.forms.models import modelformset_factory
ArticleFormSet = ...
0
votes
1answer
437 views
DJANGO: Validation error not displaying in form
Rather than showing my form errors, I get the error page saying "Exception Value: columns project_id, employee_id are not unique". How can I get my form errors to show instead? (should show something ...
1
vote
2answers
713 views
django: How to limit field choices in formset?
I'm having problems limiting the selectable choices in a formset. I have the following models: Employees, Department, Project, Projecttype, Membership, and Role. An employee can add/remove the roles ...
0
votes
1answer
278 views
Check prefiled formset and remove empty
On my reservation site for an event, I want to allow people to manage their guests list. I represent the reservation with a Registration model and the guests with a Guest model using a foreign key ...
1
vote
1answer
564 views
Django model formset query generates extra object
I want to create a formset of confirmation models. I've succesfully created the formset however formset creates an extra confirmation object.
Here is my code:
VIEW
def ...
1
vote
2answers
1k views
Django modelformset_factory delete modelforms marked for deletion
When using modelformset_factory how do you delete objects from the database that get marked for delete in the form?
I create my modelformset_factory like this:
ItemFormset = ...
0
votes
1answer
222 views
Django - sort a formset before processing it?
I have the following models in an app.
Lesson
Student
Evaluation
Parent
Lesson and Student have a m2m relationship through Evaluation.
I have an inline formset which allows me to create evaluation ...
3
votes
2answers
414 views
Unit testing django inline formsets
In attempting to programmatically post a new ForeignKey object through an inline formset, I'm receiving an error: ValueError: invalid literal for int() with base 10: ''.
Here's the code of my test ...
2
votes
2answers
1k views
Django: how to display form errors for each model object in a inline formset
I have a author model and a books model. A user can modify properties of all the books from a given author. I want to be able to display errors for each individual book rather than have all the errors ...
0
votes
1answer
159 views
Group django formset into groups based on foreign key
I have a simple setup of InventoryItems and Categories. I have a formset of InventoryItems but want to split up the items based on the FK Category, I don't need or want an inline form set.
...
0
votes
1answer
323 views
add initial data to a Django ModelForm using JavaScript (JQuery)
All,
I am displaying modelformsets in my view. I am using the JQuery dynamic-formset plugin [http://code.google.com/p/django-dynamic-formset/] to handle adding/deleting individual forms within that ...
