I'm using an ImageField to store profile pictures on my model.
How do I set it to return a default image if no image is defined?
|
|
I'm using an How do I set it to return a default image if no image is defined?
|
||
|
|
|
|
you could try this in your view:
|
||||||||
|
|
|
I haven't tried this, but I'm relatively sure you can just set it as a default in your field.
EDIT: Stupid StackOverflow won't let me comment on other people's answers, but that old snippet is not what you want. I highly recommend django-imagekit because it does tons of great image resizing and manipulation stuff very easily and cleanly. |
||||||
|
|
|
You could theoretically also use a function within your model definition. But I dont know whether this is good practice:
and then within a template
This gives you a great deal of flexibility for the future... I'm using sorl for thumbnails generation with great success |
||||
|