Good, I've been learning django for a short time, my problem arises when I try to load the image associated with an object in the database.
{% extends 'index.html' %}
{% block titulo %}
Jugadores
{% endblock %}
{% block menu%}
{% if jugadores %}
<div class='col-sm-6'>
<hr>
{% load static %}
{% for jugador in jugadores %}
<img src="{% static "jugador.imagen" %}">
<p><h2>Nombre:{{ jugador.nombre }}</h2></p>
<p><h3>Edad:{{ jugador.edad }}</h3></p>
<p><h3>Posicion:{{ jugador.posicion }}</h3></p>
{% endfor %}
{% else %}
<p><h2>No hay jugadores</h2></p>
{% endif %}
</div>
<hr>
{% endblock %}
{% block header %}
{% endblock %}
My problem is that, when entering my image in the database, it generates a parallel static directory where I have my project and when calling that image in my templates, it does not find that image