I made this custom filter to check if an image exists or not:
from django import template
from django.core.files.storage import default_storage
register = template.Library()
@register.filter(name='file_exists')
def file_exists(filepath):
if default_storage.exists(filepath):
return filepath
else:
index = filepath.rfind('/')
new_filepath = filepath[:index] + '/image.png'
return new_filepath
And I used this in the template like this:
<img src="{{ STATIC_URL }}images/{{ book.imageurl }}|file_exists" alt="{{book.title}} Cover Photo">
But it doesn't work. And I have no idea why.
http://localhost:8000/static/images/ios.png|file_exists
in url of image – Transcendence