0
votes
1answer
58 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 …
2
votes
1answer
74 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 …
1
vote
2answers
160 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 …
0
votes
2answers
183 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
264 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 …
0
votes
1answer
76 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 …
2
votes
2answers
187 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 = …
1
vote
2answers
251 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
83 views
Django formsets, filtering foreignkeys
Hey there,
I've been looking through the site and trying to find something to help me, but I can't find anything. I'll begin with showing the models that relate to this:
class Game(models.Model):
…
