Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
648 views

Why doesn't django's model.save() call full clean?

I'm just curious if anyone knows if there's good reason why django's orm doesn't call 'full_clean' on a model unless it is being saved as part of a model form. Note that full_clean() will not be ...
5
votes
3answers
2k views

Django: Overriding the clean() method in forms - question about raising errors

I've been doing things like this in the clean method: if self.cleaned_data['type'].organized_by != self.cleaned_data['organized_by']: raise forms.ValidationError('The type and organization do ...
4
votes
2answers
1k views

Django TextField max_length validation for ModelForm

Django does not respect the max_length attribute of TextField model field while validating a ModelForm. So I define a LimitedTextField inherited from the models.TextField and added validation bits ...
2
votes
1answer
1k views

Django: one form for two models (solved)

UPDATE The issue is solved, all the code you can see works. Hello! I have a ForeignKey relationship between TextPage and Paragraph and my goal is to make front-end TextPage creating/editing form as ...
2
votes
1answer
1k views

Django models overriding save / use a signal / or use a modelform?

I realize this has been asked before, but I wasn't able to find a question that really dealt with what I'm trying to do. I think it's pretty simple, but I'd like to know what the general population ...
2
votes
1answer
481 views

Django validation array of errors

I am using rf['email'].errors As said in docs, I can use it to have array of errors. [str(e) for e in rf['email'].errors] #give me ["<django.utils.functional.__proxy__>"] If repr or str ...
1
vote
2answers
48 views

Django - Change the default error messages for a form

I'm trying to create a simple ajax form with a validation summary so I can't have the error message 'This field is required' show up n times. What I need to do is replace these messege with one ...
1
vote
1answer
49 views

What is the proper place to put ModelForm validation?

I'm using Django's ModelForms and would like to have validation on both models and forms. I'm rendering form using: {{ form.as_table }} What is the proper place to put validation on per-field basis ...
1
vote
1answer
110 views

Django form.is_valid keeps throwing KeyError

I have this code in my view: def add_intern(request): if request.method == 'POST': form = InternApplicationForm(request.POST) if form.is_valid(): form.save() ...
1
vote
2answers
127 views

Django - Admin/Add running model.clean even though fields are missing

Ok, so I have a model like this: class Airplane(models.Model): tail = models.ForeignKey(Tails) wheel = models.CharField(max_length=500,blank=True) window = ...
1
vote
1answer
539 views

Adding css class to field on validation error in django

I am using Django's modelform and its really good. How can I highlight the actual text box (e.g. border:red ) if there is a validation error associated with it. Basically what i want is to add a ...
1
vote
2answers
360 views

How can I create sophisticated Django Model Validation for Django Admin?

I have the following model in Django: class Bout (models.Model): fighter_1 = models.ForeignKey(Fighter, related_name="bout_fighter_1") fighter_2 = models.ForeignKey(Fighter, ...
1
vote
2answers
228 views

Django and testing local URLs exist

I have a model which needs to store URLs which will be part of the Django environment. If I was storing normal URLs, I'd use models.URLField, and use verify_exists to make sure the URL actually ...
1
vote
1answer
476 views

Django Formset validation with an optional ForeignKey field

Having a ModelFormSet built with modelformset_factory and using a model with an optional ForeignKey, how can I make empty (null) associations to validate on that form? Here is a sample code: ### ...
1
vote
1answer
545 views

Django 1.1.1, need custom validation dependent on other fields

I have 3 models in a Django app, each one has a "hostname" field. For several reasons, these are tracked in different models: class device(models.Model): ... hostname = ...
1
vote
2answers
189 views

Only validate certain fields if a BooleanField is set

Scenario: I'm building an order-form. Like every other order-form on the planet, it has separate invoicing shipping addresses. I've just added a "Use billing address" checkbox to let the user save ...
0
votes
0answers
42 views

Django, FormWizard and clear checkbox in FileInput

Django 1.3.1. I have model Ads and field image1 = ThumbnailerImageField('Zdjęcie 1', upload_to=get_file_path, resize_source=dict(size=(800, 600), crop='smart'), blank=True, null=True, ...
0
votes
1answer
47 views

Custom form validation

I have a pretty simple form: from django import forms class InitialSignupForm(forms.Form): email = forms.EmailField() password = forms.CharField(max_length=255, widget = forms.PasswordInput) ...
0
votes
2answers
60 views

Form not validating in Django

I have a weird issue with a Django form. There is this form where I can accomplish different actions according to which submit button was clicked. At some point in the development, everything worked ...
0
votes
0answers
24 views

How to validate inlined formset which depends on another inlined formset in Django

Say I have three related models: class Service(models.Model): name = models.CharField() class Input(models.Model): service = models.ForeignKey('Service') name = models.CharField() class ...
0
votes
1answer
125 views

Delete link disappears in Django admin inline formset if ValidationError raised

I have a form with KeywordInline. When I add new object using the form inlined formset has a js-link to add new form into formset. Newly added forms have a js-enabled delete button (x mark on the ...
0
votes
1answer
95 views

Loop detection in django models

I have an model which has a many to many relationship with itself. I want to create a validation on the model(s) which would prevent a group from being it's own subgroup, or a subgroup of it's ...
0
votes
1answer
148 views

django - disable field validaton in form

I need to disable field validation in ModelForm. I want this validation not to validate some field. I have some situations (AJAX rendering form) when I want to return more complex form with additional ...
0
votes
1answer
112 views

How can I get the temporary name of an UploadedFile in Django?

I'm doing some file validation and want to load an UploadedFile into an external library while it is in the '/tmp' directory before I save it somewhere that it can be executed. Django does the ...
0
votes
1answer
57 views

Help with validation in Models and Forms

I have a few questions about validation in Models and Forms. Could you help me out with these: Where should validation be done? Should it be in the Model or the Form? Is the right way to go about ...
0
votes
2answers
137 views

Django--Form validation (Why can't I manually clean an Integer Form Field)

This should be pretty straightforward but I'm not figuring it out from the Django documentation. I have an IntegerField Model Field from which I've created a ModelForm Field. The field in question ...
0
votes
1answer
132 views

Why is my custom validation not being called?

I have this model and modelform: class Comment(models.Model): text = models.CharField(max_length=100) def clean_text(self): print "called Comment" if len(self.text) <= 5: raise ...
0
votes
1answer
74 views

What to return after a django form has failed validation?

How shall I return to my page after a django form has failed validation? This is what I have at the moment, I return a render_to_response after it has failed with my form objects and all the other ...
0
votes
2answers
48 views

Django problem with validating forms

I have been trying to figure out how all this validation works, but I am not getting the hang of it. I read the very few examples on djangoproject, but I am missing concepts and how everything is tied ...
0
votes
0answers
171 views

Djando admin - custom error when deleting

I would like to use validating fields connections, but ONLY when delete action is performed. What should I do to validate that fields given in form via admin, chech them and if something is wrong - ...
0
votes
2answers
399 views

Django request.user is empty

Using django, I am authenticating the user through Google. I get the initial request tokens & redirect the user to google for auth. After which google redirects the user back to my website (using ...
0
votes
1answer
110 views

Django - access m2m objects (or raw pks) from ``clean`` before model is saved

Of course you can't just use self.related_field.objects.all(), or you'll get a ...needs to have a primary key... error, but if I want to run custom validation inside of Model.clean, there appears to ...
0
votes
1answer
117 views

In Django admin, how can I set a blog post to only validate if it isn't a draft?

I'm working on a blog for Django, and I would like to use the Django admin's built in validation. However, I would like some way to disable validation if the blog post status is set to "draft". ...
0
votes
1answer
441 views

Validate/clean a FileField on a non-model form in Django?

I'm ultimately trying to validate a FileField by extension type. But I'm having trouble even getting the clean method for this field to pickup the POSTed value. from django.forms.forms import Form ...
0
votes
1answer
46 views

How to check value transition in Django (django-admin)? (Revisited)

I was wondering about how to control transitions in model data. I found the solution at http://stackoverflow.com/questions/867120/how-to-check-value-transition-in-django-django-admin but when I tried ...
0
votes
1answer
155 views

Adding an error to a django form in a view… hack?

What I'm trying to do is to add an error for a field in a view, AFTER both form.is_valid() and form.save(), and it seems to work but only because of a hack, and I'm hoping someone here can explain why ...
0
votes
2answers
569 views

Django - How best to handle ValidationErrors after form.save(commit=False)

This is a fragment of my code from a view: if form.is_valid(): instance = form.save(commit=False) try: instance.account = request.account ...
0
votes
2answers
607 views

Django: Does model_instance.clean() run before basic validators?

Let's say that I have a model: class Ticket(models.Model): client = models.ForeignKey(Client) color = models.CharField(max_length=255) def clean(self): self.color = ...
0
votes
2answers
863 views

Django Custom Model Field with Validation…how to hook it back to ModelForm

A common occurrence I have with one particular project is that it requires the user to enter dimensions (for width/depth/height) in Feet and Inches. Calculations are needed to be performed on that ...
0
votes
3answers
496 views

Django validate and go back to preview URL?

im asking again :), i don't know how make this. My English is not too good, but ill try to asking this: how ill validate a form and go back to the preview url (the same view form) and show the ...
0
votes
1answer
174 views

how validate form and show the value of the filled fields?

now im learning to validate form, "all" is working, im showing the erros of empty fields, but i have 2 questions: how ill show the value in the filled fields when there are errors in another ...
-1
votes
2answers
768 views

django form validation based on whether field has value

When I submit an empty form with a phone_type selected (for formHomePhone) the form returns its self without a value selected in phone_type stipulating This field is required As you can see from the ...