views:

55

answers:

2

Hi guys, im using a django app (django adzone), well, but im trying to add banners, and django zone tell me " please fix the errors" , but nothing more, i cant see where are the errors.

any idea how ill know ?

EDITED

There's not trace about the error or something like that, is just a django admin message see the images alt text

thanks

A: 

Then your best shot is to install ipdb (easy_install ipdb) then drop these lines in at the end of the is_valid method (and if not create it):

import ipdb; ipdb.set_trace()

Save your form again, then go to the router. You'll have access to a shell where you can inspect several suspects like:

  • self.data
  • self.errors
e-satis
A: 

OK, i know where is the error.

There's another field named "Advertiser", but Chrome dont display this field, i dont know why. sorry i think there is not error, just a Chrome "bug".

FF,Opera, IE are showing the complete form.

Thanks

Asinox
Go ahead and mark this as the answer so people know this has been resolved.
Jordan Reiter