<snip>
>
> def save(self):
>     # code to determine if image is RGB or CMYK
>     if isRGB is True:
>         super(Photo, self).save()
>     else:
>         return
>
> Is there a way to tell the user that their photo was rejected because
> it was in CMYK? Should I be returning something in particular instead
> of just "return"? Or is this something that would require modifying
> the contrib.admin code?

Consider adding a custom validator to your image field and having it
raise a validation error when the image is CMYK. Look up isValidImage
in django.core.validators for a good starting point.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to