Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
3k views

Django's ModelForm unique_together validation

I have a Django model that looks like this. class Solution(models.Model): ''' Represents a solution to a specific problem. ''' name = models.CharField(max_length=50) problem = ...
7
votes
3answers
2k 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 ...
5
votes
1answer
122 views

Uploading Profile Image using Django ModelForm

I've looked around at related questions, but none of the answers seem to work. I'm trying to upload a profile image for a user and have it replace (overwrite) the current image. Upon saving the image ...
3
votes
1answer
28 views

django specifying multiple labels

By default, when a form is created in django using ModelForm, the labels for each field are basically the name of each field with the first letter capitalized. However, I want to write my own labels ...
3
votes
2answers
837 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 ...
3
votes
2answers
461 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 ...
3
votes
3answers
2k views

Creating a model and related models with Inline formsets

[I have posted this at the Django users | Google Groups also.] Using the example at http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#inline-formsets, I am able to edit objects belonging ...
2
votes
2answers
34 views

Django ModelForm has no model class specified

Hello and thank you in advance from a Django Noob... I am trying to use ModelForm: from django.db import models from django.forms import ModelForm class Car(models.Model): carnumber = ...
2
votes
2answers
148 views

Implementing a Multiple (Checkbox) Select + “Other” widget in Django

I need to populate a CharField with the result of a set of checkboxes plus an "other" [please specify] option (the value would be 'option-a,other' for the form state below). The form can basically ...
2
votes
1answer
102 views

Django one form / two models

I have a very simple model for tracking events: class Event(models.Model): description = models.TextField() location = models.ForeignKey(Location) start = models.TimeField() ...
2
votes
1answer
706 views

Using class based generic view DetailView with a ModelForm reveals a bug - how to proceed?

I've been impressed how rapidly a functional website can go together with generic views in the tutorials. Also, the workflow for form processing is nice. I used the ModelForm helper class to create a ...
2
votes
1answer
297 views

Django, how to parse a single form field (HTML) without a for loop

I want to parse the fields of my Modelform separately and not in a for loop. And i want some fields to parse the Django HTML for that element. I have this: <form action="#" method="POST" ...
2
votes
1answer
367 views

How add new instance of django model with FileField by ModelForm?

I'm Django beginner. I think my problem is trivial but i can't solve it. I have model named Document with one FileField: class Document(models.Model): file = ...
2
votes
1answer
131 views

Django using a newly create object in reverse redirect

I am trying to pull the id from the newly created project object so I can redirect the user to the page containing the new project. Right now I get "'ProjectAddForm' object has no attribute 'id'". I ...
2
votes
3answers
563 views

How to access request in ModelForm for adding request.user as foreign key

I am trying to override save in the modelform to add the current user as the owner of a vehicle. But I am receiving 'NoneType' object has no attribute 'user' What am I forgetting? forms.py: class ...
2
votes
1answer
166 views

get_model equivalent for ModelForms?

I have a multiple ModelForm classes that each represent a different Model. I would like to have a generic 'create' function that loads the specified model form based on a URL parameter. It is possible ...
2
votes
2answers
303 views

After extending the User model in django, how do you create a ModelForm?

I extended the User model in django to include several other variables, such as location, and employer. Now I'm trying to create a form that has the following fields: First name (from User) Last name ...
2
votes
1answer
2k views

Django model form using forms.ModelMultipleChoiceField

I have a ModelForm in my Django app that uses a forms.ModelMultipleChoiceField, which displays as a forms.CheckboxSelectMultiple widget on the form. This ModelForm is used to select/de-select values ...
2
votes
1answer
464 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
2answers
37 views

Saving to ManyToManyFields using ModelForm and ModelMultipleChoiceField

I've created a basic Django app that contains books/authors/publishers as per the Django Book - trying to use a ModelForm to create a means to modify existing books - the problem is that the 'authors' ...
1
vote
2answers
68 views

Django form validation error with incomplete fields but complete instance

I want to be able to do: def update_profile(request, username): user = Profile.objects.get(user__username=username) # update subset of profile, eg value_to_company is set in request.POST ...
1
vote
1answer
44 views

Validate end_date is bigger than start_date in Django Model Form

I have a start_date and end_date fields in my model, I want to assign an error to end_date when it is bigger than start_date, I have been looking docs, but don't find an example about that.
1
vote
1answer
141 views

Accessing form attributes in custom form field type in Django

I have a form that contains a foreignkey field (Place). I've set up this field to use a custom form field type based off of CharField instead of ModelChoiceField as I want users to be able to use an ...
1
vote
1answer
225 views

confused about self.instance in save() of child of ModelForm()

The save() documentation explains that: A subclass of ModelForm can accept an existing model instance as the keyword argument instance; if this is supplied, save() will update that ...
1
vote
3answers
395 views

field choices() as queryset?

I need to make a form, which have 1 select and 1 text input. Select must be taken from database. model looks like this: class Province(models.Model): name = models.CharField(max_length=30) ...
1
vote
1answer
173 views

Can't add field to ModelForm at __init__

I have a problem with ModelForm. Field "test1" is displayed, but "test2" - is not. Playing with base_fields didn't help. # models.py class Country(models.Model): name = ...
1
vote
1answer
520 views

django ModelForm save() method issue

I have a model form: class SnippetForm(ModelForm): class Meta: model = Snippet exclude = ['author', 'slug'] and I want to be able to edit a particular instance by using this: ...
1
vote
1answer
135 views

Problem with validating ModelForm

I use ModelForm to create my form. All works fine except 1 thing - validating the unique field. Code: class Article(models.Model): ... title = models.CharField(max_length=255, unique=True, ...
1
vote
1answer
242 views

How to override save() method of modelform class and added missing information?

I just started to learn Django and I had a question. I'm trying to automatically add the missing information, when saving form data. I get to change/add the desired "cleaned_data" information by ...
1
vote
2answers
318 views

Localization of Django application only applies to forms.py and not to models.py

I have a problem when trying to localize my application. It is available in two languages: english and german. The problem appears when the browser has the language set english(United States) and in ...
1
vote
1answer
480 views

Django ModelForms - 'instance' not working as expected

I have a modelform that will either create a new model or edit an existing one - this is simple and should work, but for some reason I'm getting a new instance every time. The scenario is this is the ...
1
vote
2answers
294 views

Django: MultipleChoiceField in admin to carry over previously saved values

I am having troubles to carry over previously selected items in a ModelForm in the admin. I want to use the forms.CheckboxSelectMultiple widget since that is the most straightforward UI in this ...
1
vote
2answers
219 views

Django “Duplicate” ModelForm

I'm wondering if there is a simple way of creating a "duplicate" ModelForm in Django - i.e. a form that is prefilled with the content of an existing model instance (excepting certain fields, such as ...
1
vote
1answer
329 views

Set Django ModelForm visible fields at runtime?

I have a Django model: class Customer(models.Model): first_name=models.CharField(max_length=20,null=True, blank=True) last_name=models.CharField(max_length=25,null=True, blank=True) ...
1
vote
2answers
114 views

django forms from two tables referencial integrity

i have a class named cv,and a class named university, and each user that completes his cv, should choose a University he studyes at. My problem is: one student can study at one or 2 or three ...
1
vote
2answers
553 views

Removing a fields from a dynamic ModelForm

In a ModelForm, i have to test user permissions to let them filling the right fields : It is defined like this: class TitleForm(ModelForm): def __init__(self, user, *args, **kwargs): ...
1
vote
2answers
261 views

Django: How to Use upload_to=function with ModelForm

The goal is to dynamically update upload_to such that user uploaded files are stored in a directory location that depends on the user. There are several examples of this online, but none using ...
1
vote
3answers
201 views

Dynamically update ModelForm’s Meta class model field

def SiteAdminForm(model_cls, *args, **kwargs): class MerchantAdminForm(forms.ModelForm): class Meta: exclude = ('external_links', 'published', 'logo','image_zip_file',) ...
1
vote
1answer
2k 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
255 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
42 views

ModelForm “instance” parameter and foreign key field

I'm trying to initialize an object with in "instance" parameter but it doesn't go into the form. It is a required one so is_valid fails. Can someone please advise, I'm almost sure it's an easy mistake ...
0
votes
3answers
42 views

Change boolean value in Django ModelForm

I have field in my Model which indicates whether a user wants to receive emails receive_invites = models.BooleanField(default=True, help_text="Receive an invite email from friends") I also have a ...
0
votes
2answers
96 views

Django ModelMultipleChoiceField object has no attribute to_field_name

I'm trying to create a custom field for a ModelForm. I'm extending from ModelMultipleChoiceField and then overriding render and render_options, however, I keep getting this exception when just trying ...
0
votes
1answer
44 views

Django edit template for ModelForm is not being filled in with values

I have a ModelForm that I have created a view and template with to add an instance to the database. I am now trying to extend this to be editable when the user clicks a button - but when they do ...
0
votes
1answer
22 views

Creating modelform fields for each object in a queryset

This question is similar to this: field choices() as queryset? For example if I have a really simple model: class Order(models.Model): quantity = models.FloatField() def ...
0
votes
2answers
55 views

problem using django's User authentication model. Uncomprehensible error

I want to register users. So I made a: class RegisterForm(ModelForm): class Meta: model=User #(from django.auth.contrib.User) now i display that form in a template for the users to fill ...
0
votes
3answers
52 views

In Django, can I exclude a field in ModelForm sub-subclass?

I have a “generic” InternForm that inherits from ModelForm and defines common messages, widgets, etc. I defined a subclass called ApplyInternForm for application form that is accessible to everyone ...
0
votes
1answer
61 views

ModelForm with ImageFields, not clearing properly if validation error

First the code. The ModelForm (im1 and im2 are models.ImageField): class TestForm(forms.ModelForm): checkme = forms.BooleanField(required=True) class Meta: model = UserProfile ...
0
votes
1answer
52 views

Passing an argument to the Djano ModelForm clean method

I am trying to pass an argument to the clean method of my ModelForm so that I can perform some extra validation on some data. In my views.py file, I have: page_data = ...
0
votes
1answer
148 views

Django: Save Modelform with Foreignkey using to_field and ModelChoiceForm

I have a problem saving a ModelForm when using a foreign key that doesn't "point" to the primary key of it's related table (legacy schema woes) I am using to_field= for my Foregin Key so that it will ...

1 2