django-validation refers to form and field validation tools provided by Django out of the box
0
votes
2answers
16 views
Django form custom Date validation
I have a django class that has two date attributes--a start date, and an end date. I want to make a custom validation requirement that says that the start date HAS to be before the end date (or on the ...
0
votes
2answers
18 views
validating inline_formsets when the main form doesn't validate
I have an estimate for which has a collection of details about a potential client. Things like name, address, etc. Easy stuff. I then have a few inlineformsets for products, labour, etc. that are tied ...
0
votes
1answer
40 views
Django - preventing duplicate records
I have a list of client records in my database. Every year, we generate a single work order for each client. Then, for each work order record, the user should be able to create a note that is specific ...
0
votes
2answers
29 views
Is save() called implicitly when calling create in django?
I'm trying to perform some custom validation on a model and I'm getting confused. Let me be specific. Let's say my code is as follows:
class FooManager(models.Manager):
def create_foo(name):
...
1
vote
1answer
57 views
Django alpha numeric validation in form fields
I want to perform a field validation,but the conditions are
1)The field should have 10 character.
2)off these 1st 5 character should be alphabets and next 5 character should be numeric digits
I ...
0
votes
1answer
73 views
django model: check relation before saving the object
I have django model consists of two class annualReport and annualReportAttachment
The relation between the two models is oneToMany. In the admin form I need to validation that the user has uploaded ...
0
votes
2answers
40 views
If I don't want to call clean_<fieldname>() method, can I do it?
Django: If I don't want to call clean_() method, can I do it?
class myForm(forms.Form):
userId = forms.CharField(max_length=30, required=False,)
email = forms.EmailField(required=False,)
...
0
votes
2answers
174 views
Django: Check if a object exists but isn't current instance of object
I've put together a basic CMS system for a project and I'm adding an order system so that you can order the created pages in the nav bar. Unfortunately the custom validator I've written is a little to ...
0
votes
1answer
59 views
Is it possible to use Django F() expressions for atomic updates together with full_clean()?
I've just discovered that fields assigned with Django F() expressions fail to validate. I modified example from the Django doc:
>>> product = Product.objects.get(name='Venezuelan Beaver ...
1
vote
1answer
77 views
Django - How to remember values and show errors in form validation?
I'm not getting how to remember values and show errors in form validation.
Here is my code:
template.html:
<form method="post" action="/submeter/anuncio/">{% csrf_token %}
...
0
votes
0answers
11 views
In Django 1.4.x, is there a way to inject or hook custom validators to a 3rd-party model?
Suppose I'm developing a project and I'm using a model from some 3rd-party application. E.g.:
# `foo` is the application; `Bar` is the model
from foo.models import Bar
and I need to tweak the ...
0
votes
1answer
64 views
Overriding/Disabling the max_length validation of CharField in form.ModelForm
Suppose I have this model defined in models.py:
[ . . . ]
class Robot(models.Model):
ROBOT_CATEGORIES = (
[ . . . ]
)
name = models.CharField(max_length=30)
version = ...
0
votes
0answers
35 views
Django modifying ValidationErrors page
I'm writing a model that contains the md5 hash of a file, I've set this field as unique, and the hash is calculated during save(). In the past I had a problem with the file being saved, with a ...
1
vote
4answers
226 views
Django form field validation - How to tell if operation is insert or update?
I'm trying to do this in Django:
When saving an object in the Admin I want to save also another object of a different type based on one of the fields in my fist object.
In order to do this I must ...
0
votes
2answers
75 views
Django model field validator function used for update or insert [closed]
Is there a way of figuring out inside a Django model field validator function if it used for update or insert?
1
vote
1answer
384 views
Django field validation in Model and in Admin?
I want to define my own validation routine for a particular field of a Django model.
I want the error message to be displayed in the admin form but I also want the same validation to take place if ...
0
votes
1answer
24 views
Inquery about validation in Django
I have two questions.
1) can data be submitted in database without validation.If yes then how ?????
2) Can we use javascript in django for validation and if yes then how we post the data in ...
1
vote
1answer
151 views
Django - unique_together validation
Given the example code below, what would be the best way to validate that there are no duplicate code per account?
Model
class Post(models.Model):
account = models.ForeignKey('Account', ...
4
votes
2answers
256 views
How to validate domain of email address in form?
Given an email address (ex: goelv@example.com), how do I validate that the domain ("example.com") is included in a given list of domains. If the domain ("example.com") is not in the specified list, ...
2
votes
1answer
107 views
Django model validation on related fields
When is the appropriate time to do validation on related fields in a model?
For example if I have a class Video that has a ManyToMany relationship with a class Playlist, when the Video is changed to ...
0
votes
1answer
79 views
Django unexpectedly sets a field to None when validating a formset
I'm facing a strange issue with django. It seems that when I run is_valid() on the formset, one value of each subform is set to None. To check this, I put two debug lines printing the cleaned_data ...
1
vote
1answer
256 views
Django Admin Form Validation from QuerySet
I have these two models:
class Service(MelosModel):
performer = models.ForeignKey(Performer)
event = models.ForeignKey('Event')
composition = models.ForeignKey(Composition)
class ...
0
votes
1answer
145 views
Django forms: is_valid doesn't approve of a field value retrieved through Ajax
I'm using some ajax to fill a custom select box dynamically in my form.
However, when I post the data the is_valid method doesn't want to validate the submitted value for this field, although it's a ...
0
votes
0answers
186 views
Django Forms - Fields containing arrays
I have a couple fields within a form that I'd like to be an array of values. How can I achieve something like
categories['sale']['price']
categories['sale']['currency']
...
0
votes
1answer
240 views
django basic user validation in views.py
I am using this code to validate logged in / authenticated users in my views.py.
@login_required
def my_view(request, username):
try:
user = User.objects.get(username=username)
...
2
votes
2answers
914 views
Django - form Clean() and field errors
I'm trying to set field errors in a form clean() and I'm currently doing:
self._errors['address'] = self._errors.get('address', ErrorList())
self._errors['address'].append(_(u'Please specify an ...
2
votes
2answers
917 views
Django form validation on empty IntegerField
I have a form that I don't render as part of HTML page but validate input against:
class milestone_form(forms.Form):
name = forms.CharField(required=True)
completion = ...
0
votes
1answer
308 views
Django ManyToMany Validation and Save
I am developing a Leave of Absence Request Form for a client. The form which is filled out by an employee allows the employee to select mutiple days which he/she wants to take off. When the employee ...
0
votes
1answer
79 views
How to validate so that input emails is equal in Django?
I want to make a user-registration form where I will have fields such first name, last name, email, re-email, and password.
So my question is how to validate so the input email and re-email is equal. ...
0
votes
3answers
681 views
Django ModelChoiceField - use something other than id?
Say I have an address table and it has a postal_code field -- ModelChoiceField does not allow me to use something other than PKs to validate existence correct? What would be the way to go? Normal ...
3
votes
2answers
114 views
does django models offer something similar to forms' clean_<fieldname>()?
I am trying to move all business-logic-related validations to models, instead of leaving them in forms. But here I have a tricky situation, for which I like to consult with the SO community.
In my ...
0
votes
1answer
159 views
Custom widget with custom value in Django admin
In model I have integer field. Meaning of value of this field is "number of days since 1.1.1970", so I wanted to display it in admin interface as a date using AdminDateWidget to allow easier selection ...
1
vote
1answer
84 views
In Django, how does one determine whether a business logic regarding user inputs goes into to model or form?
I always have the the trouble in determining whether I should put business logic regarding user inputs in model or form, especially for simple business rules. Say I have a Product class, and a ...
1
vote
2answers
275 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
125 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
1k 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
330 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 ...
1
vote
1answer
573 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 ...
1
vote
1answer
728 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()
...
0
votes
1answer
257 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
569 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
959 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
99 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 ...
1
vote
2answers
365 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
2answers
651 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
632 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 ...
1
vote
1answer
171 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
214 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
2answers
1k 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 ...
5
votes
1answer
2k 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 ...
