Re: Custom Validation in Django 1.0.2 Final

2009-04-07 Thread Harish
Hi, Malcolm... Thanks a lot... It is working Now.. On Apr 7, 12:05 pm, Malcolm Tredinnick wrote: > On Mon, 2009-04-06 at 23:58 -0700, Harish wrote: > > [...] > > > If salary is found negative it displays the error message in beginning > > of the form(that is after

Re: Custom Validation in Django 1.0.2 Final

2009-04-07 Thread Malcolm Tredinnick
On Mon, 2009-04-06 at 23:58 -0700, Harish wrote: [...] > If salary is found negative it displays the error message in beginning > of the form(that is after the message 'Please correct the error below. > '). Actually it should display the error message in the 'Salary' > section > > I think, I am

Custom Validation in Django 1.0.2 Final

2009-04-07 Thread Harish
Hi Folks, I am wrote a simple application in djang0 1.0.2 to check the custom validation. I will past the model.py and admin.py code here. model.py --- from django.db import models from django.contrib import admin from django import forms class Personal(models.Model): firstName =