3
votes
2answers
391 views
Dynamically update ModelForm’s Meta class
I am hoping to dynamically update a ModelForm's inline Meta class from my view. Although this code seems to update the exclude list in the Meta class, the output from as_p(), as_ul(), etc does not …
2
votes
2answers
37 views
Django ModelForm instance with custom queryset for a specific field
I have a model not unlike the following:
class Bike(models.Model):
made_at = models.ForeignKey(Factory)
added_on = models.DateField(auto_add_now=True)
All users may work at a number of …
1
vote
2answers
230 views
Creating a model and related models with Inline formsets
Hi,
[I have posted this at the Django users Google group also.]
Using the example at http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-...
, I am able to edit objects belonging a …
1
vote
1answer
143 views
Model formsets and Date fields.
I have a model formset on a model with a couple of date fields - which again is a DateTimeField in the model.
But when it displays in the template, it is shown as a text field.
How can I show it as a …
1
vote
1answer
237 views
Save modelForm to update existing record
I create a modelForm with instance to existing model (Book). I am not able to update the Books record. Adding a new record is fine but when I attempt to update, it appears to be unable to find the …
1
vote
2answers
180 views
splitting a ManyToManyField over multiple form fields in a ModelForm
So I have a model with a ManyToManyField called tournaments. I have a ModelForm with two tournament fields:
pay_tourns = forms.ModelMultipleChoiceField(
…
0
votes
2answers
41 views
How do I update an already existing row when using ModelForms?
Greetings,
I have a question on how to update an existing row in my database when one of the fields is my primary key. I am using ModelForm and Django-Piston - my main goal here is to have RESTful …
0
votes
1answer
33 views
ModelForm save fails
Hi,
I am trying to save a modelform that represents a bank account but I keep getting a ValueError even though the form appears to validate. The models I have to use are:
class Person(models.Model):
…
0
votes
3answers
41 views
How can I use multiple queryset in a ModelChoiceField?
I'm just beginning to learn Django and I would like to use different queryset in a ModelChoiceField.
I have 3 models like that :
class Politic(models.Model):
name = models.CharField(max_length=100)
…
0
votes
1answer
72 views
Strange behavior with ModelForm and saving
This problem is very strange and I'm hoping someone can help me. For the sake of argument, I have a Author model with ForeignKey relationship to the Book model. When I display an author, I would …
0
votes
3answers
290 views
Creating modelformset from a modelform
Hi everyone,
I have a model MyModel which contains a PK - locid, that is an AutoField.
I want to construct a model formset from this, with some caveats:
The queryset for the formset should be a …
0
votes
1answer
361 views
django update modelform
I have a model as follows
class UserPrivacy(models.Model):
user = models.ForeignKey(User)
profile = models.SmallIntegerField(default=1, choices=PRIVACY_TYPE)
contact = …
