Mar-30-2020, 05:43 PM
I am using python Django framework.
Image is not displaying when I run the development server.
This is the code, everything else working fine but image is just showing as thumbnail.
Image is not displaying when I run the development server.
This is the code, everything else working fine but image is just showing as thumbnail.
<img src="C:\Users\mp88_\OneDrive\Desktop\albumLogos\B0097RFAMU.jpg"> <h1>{{ album.album_title }}</h1> <h3>{{ album.artist }}</h3> <ul> {% for song in album.song_set.all %} <li>{{ song.song_title }} - {{ song.file_type }}</li> {% endfor %} </ul>would anyone know why?