I don't want to store images in static for this Django project because the user will be able to change them from the admin panel.
My code looks like:
<div class="col-md-3 col-sm-4 col-xs-6">
<img class="img-responsive" src="/galleryimg/first.jpg"/>
</div>
Where /galleryimg/ is a folder in the root directory of the project, and "first.jpg" is the file that I want to serve.
However, this does not load. How can I get it to load?