Tagged Questions
The inline-formset tag has no wiki summary.
12
votes
4answers
2k views
django class-based views with inline model-form or formset
I have the following models:
class Bill(models.Model):
date = models.DateTimeField(_("Date of bill"),null=True,blank=True)
class Item(models.Model):
name = ...
8
votes
3answers
4k views
Inline formset in Django - removing certain fields
I need to create an inline formset which
a) excludes some fields from MyModel being displayed altogether
b) displays some some fields MyModel but prevents them from being editable.
I tried using ...
3
votes
1answer
60 views
How to show different inlines depending of current object field value
Given a model named MainModel and a RelatedModel, where the later has a ForeignKey field to MainModel:
class MainModel(models.Model):
name = models.CharField(max_length=50)
type = ...
3
votes
2answers
670 views
Django: ManagementForm data is missing … Formset will not validate. Why?
For some reason my formset will not validate, after I submit it. Any ideas as to way this may be happening?
#models.py
class Department(models.Model):
department = models.CharField(verbose_name = ...
3
votes
2answers
779 views
Django Formset without instance
In this Django Doc explain how to create a formset that allows you to edit books belonging to a particular author.
What I want to do is: Create a formset that allows you to ADD new book belonging to ...
2
votes
1answer
62 views
confused about django foreignkey, manytomanyfield, inlineformset_factories
All,
I am missing something fundamental about the underlying model for Django's ForeingKeys vs ManyToManyFields.
Suppose I am building an application about cars. I might have the following classes:
...
2
votes
1answer
92 views
when adding a new inline to my formset, my datepickers stop working
Bit of a strange one today.
I've a very basic project. A form and added to that I have an inline form. It's books to authors.
When the form loads(/authors/create/) I have a author name and ...
2
votes
1answer
287 views
How to imitate django admin's OneToOneField optional form
I would like to imitate the functionality that the Django Admin site offers when a model has a OneToOneField to another model, where it is optional to fill the form for the OneToOne model. The form ...
2
votes
1answer
213 views
django: How to use inlineformset within the formwizard?
I'm displaying two separate sample projects. The first is a Contact related and shows the principle of using the formwizard. The second is an ingredients to recipes related project which shows how to ...
2
votes
1answer
123 views
Customize inline_formset field display of foreign key
I have a model called Access that links to two other models.
class Access (models.Model):
portfolio_id = models.ForeignKey(Portfolio)
user_id = models.ForeignKey(User)
title = ...
2
votes
1answer
883 views
Initial Data for Django Inline Formsets
I have put together a form to save a recipe. It makes use of a form and an inline formset. I have users with text files containing recipes and they would like to cut and paste the data to make entry ...
2
votes
2answers
2k views
Django: Aquiring form id from formset
I am not sure if title describes what i want accurately. What i want is to achieve something like that: ...
2
votes
2answers
631 views
dynamically populating fields in a formset
I have two models that looks like this:
class RouteBase(models.Model):
base = models.ForeignKey("Base")
route = models.ForeignKey("Route")
sequence = models.IntegerField()
class ...
1
vote
1answer
203 views
Django inline formset setup
I've setup my classes as below:
class InspectionGroup(models.Model):
group = models.CharField(max_length=50)
class InspectionItem(models.Model):
group = models.ForeignKey(InspectionGroup)
...
1
vote
1answer
269 views
Django inlineformset - custom save method
This is my models.py
class Invoices(models.Model):
...
sum_w_vat = models.DecimalField(max_digits=7, decimal_places=2, default=0)
sum_wo_vat = models.DecimalField(max_digits=7, ...
1
vote
2answers
703 views
Django Inline Formset Custom Validation only Validates Single Formset at a time
I'm using Django and have a form with two additional inline formsets. I want to validate that each formset contains at least one populated form. I've written code such that this works but it only ...
1
vote
1answer
504 views
Make inlineformset in django required
I am new to django (until now, I used the symfony PHP Framework). My problem is this:
I have a model Event and model Date. The Date has a foreign key to Event, so that an Event may (or should) have ...
1
vote
1answer
227 views
How do I detect if a formset has any errors at all in a template?
Thanks to the fantastic inline model formsets in django I have a pretty advanced form with 4 inline formsets. In the template I display each formset in a tab. Everything works really slick but I would ...
1
vote
1answer
94 views
How do I use inline formsets to link two or more forms?
I have the following models and I'd like to use them to generate a contact form...now I know I'm suppossed to use inline formsets, but I've never been able to make heads or tails of how to make this ...
1
vote
2answers
1k views
inlineformset_factory custom form id
I am writing a web application that uses ajax to add new forms on the page. Existing forms are made using inlineformset_factory.
When client side gets the form it inserts it in the right position and ...
1
vote
2answers
958 views
How to add custom fields to InlineFormsets?
I'm trying to add custom fields to an InlineFormset using the following code, but the fields won't show up in the Django Admin. Is the InlineFormset too locked down to allow this? My print "ding" ...
0
votes
1answer
24 views
django inlineformset_factory extra attribute being ignored?
I am trying to render an inlineformset but the "extra" attribute seems to be ignored. Consider the following models:
class Foo_model(models.Model):
fooName = ...
0
votes
1answer
35 views
how to access the member forms of a formset?
I have an inline_formset for which I am using a custom form. That form has various functions that I would like to call. But, given an instance of the formset, how can I access that (those?) form(s)?
...
0
votes
1answer
36 views
Using the “Add Another” button with inline formsets?
I have figured out how to use the admin style "Add Another" button (which adds a new record of the foreign key and pops it into your current form's select box). Here's that question/answer. I am ...
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
48 views
Django inlineformsets and general noobishness
I'm sorry to ask two questions about similar topics in one day but my noobishness with django has just completely taken over. Basically I have two models:
class Story(models.Model):
title = ...
0
votes
0answers
88 views
django admin inline formset
class SomeClassAdmin( admin.ModelAdmin ):
inlines = [
Inline1,
Inline2
]
def save_formset(self, request, form, formset, change):
instances = ...
0
votes
0answers
44 views
inlineformset_factory save partial result to parent table
I'd like to save partial results from inlineformset_factory...
Example:
TravelFormSet = inlineformset_factory(Travels, TravelsRelations, exclude=('user',), form=TravelsRelationsForm)
Travels is ...
0
votes
1answer
103 views
Django inline formset - get saved object
if formset.is_valid():
formset.save()
Hello, how can i get saved inline formset object? In fact my formset hase no unique field.
0
votes
1answer
105 views
Getting the foreign key instance within a form_class used in a Django admin inline
I have an admin inline that uses a custom form class. How can I access the parent instance (foreign key) from within the functions of that form class?
Relevant code below:
models.py:
class ...
0
votes
1answer
210 views
Django form validation with inline formsets
I have a main form and three inline forsets all on one HTML page for the purpose of creating Estimates for customers. The "main" form's primary key is used as the foreign key for all three inline ...
0
votes
1answer
202 views
Django's Inline Forms
I am trying to create records using an inline formSet while at the same time creating a record with a normal form whose primary key is the foreign key for the inline formSet all on the same HTML page. ...
0
votes
1answer
256 views
Django - Inline Forms and Foreign Keys
I have an app that allows a user to create an estimate for a project. The estimate has the basic client information (name, address, phone number, etc.) and a custom Primary Key value that I generate. ...
0
votes
1answer
59 views
How do I make a foreign key appear as its own form instead of a dropdown menu?
I'm trying to create a formset for a list of movies like so:
class MovieList(models.Model):
user = models.ForeignKey(User)
movie = models.ForeignKey(Movie)
class Movie(models.Model):
...
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
340 views
how to limit django admin inline formsets
How do you limit the inline formset in django admin?
Problem:
I have a table A with 1 to n relationship with B. Table A should have at least one Table B item and a max of 5 Table B items.
Thanks
0
votes
2answers
200 views
Empty cleaned_data
I am not understanding why this is happening. I have apply the exact same code to other inline formsets but this specific inline formset is not saving any of my changes. I found that within my form ...
0
votes
1answer
168 views
Django inline formset throws IndexError when users are concurrently editing
Updated: I now think this is an existing bug in Django reported as Ticket 14642
This has been driving me crazy and I thought it was due to my Form code but I realize now I can recreate it using my ...
0
votes
1answer
74 views
drupal6 error ajax inline
How can i set a custom inline error messages to form in a node (include cck and all the stuff) ?
I saw several modules, but none of them give a 100% solution, because there is no CCK-support, ...
0
votes
2answers
418 views
specify queryset when instantiating an inlineformset
I have the following in views.py to generate a page that shows an inline set of forms for a user's "qualifications"
from django.db.models import User
from models import UserQualification
def ...
0
votes
1answer
149 views
How to clean a certain field in a InlineFormSet?
I need to clean a specific field in an inline formset, and I can't figure out how to do it.
I've tried with the formsets def clean(self) method but don't know where to save the cleaned value. If I ...
0
votes
1answer
236 views
Display correct choice text for Django inline formset with two foreign keys
I have successfully used inline formsets to create a recipe input form that consists of a Recipe form (just a model form) and a RecipeIngredient formset. The models are:
#models.py
class ...
0
votes
1answer
615 views
Django Inline formset for editing multiple related records at once - the right way to go?
When using inline formsets, how does one do paging? I'm using django 1.1.
The situation I'm in, is that the user needs to be able to edit the related objects quickly and easily (which is why I think ...
0
votes
1answer
156 views
Imagefield in Inline formset not populated
I have this piece of code:
vehicle = get_object_or_404(Vehicle, stock_number=stock_number)
if request.method == 'POST':
vehicle_form = VehicleForm(request.POST, instance=vehicle)
photos = ...
0
votes
1answer
467 views
Django inlineformsetfactory - What is it good for?
Sorry for a newbie question but...
Can someone shed some light on what is the use case for inlineformset_factory?
I have followed example from Django documentation:
#Models
class ...
0
votes
1answer
1k views
Multiple django forms posted fromsame page, inlines and adding/removing those inlines
There are several questions about more or less same issue in stackoverflow, but none of them seems to cover the issues i can foresee. Since my django knowledege is limited i might be overreacting... ...