[Answered ]-Image files not importing Using Django

1👍

Use the .url attribute to access the correct URL for a file or image field

<td><img src="{{ users_detail.profile_pic.url }}" width="300" alt="">{{ users_detail.profile_pic.url }}</td>

Leave a comment