I have a Django template and I want to add a static image to the file from my static folder that I have within the application. I am trying to but nothing is appearing on the template.
Does anyone know where my error is coming from?
Here is my code:
{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="col">
<img src="static/images/Artboard1.png" alt="">
<h2>{{ currentUser.username }}</h2>
</div>
<a href="{% url 'logout' %}">Logout</a>
{% endblock %}
Here is an image of my directory:

/static/images/Artboard1.png. Also how have you configured static files? Is this is dev or production?