You do not apply a filter because |file_exists is outside of {{}} . Try the following:
<img src="{{ STATIC_URL }}images/{{ book.imageurl|file_exists }}" alt="{{book.title}} Cover Photo">
Or, if you want to apply file_exists to the entire image URL, try the following:
<img src="{{ STATIC_URL|add:'images/'|add:book.imageurl|file_exists }}" alt="{{book.title}} Cover Photo">
source share