Im working with Django and I have models information that I use in html
Problems I am having
<img src="{% static 'Bola/noticias_imagens/{{ noticia.noticia_imagem }}' %}"
How do I make this code work?
And again I have a text that has some tags like <p>
and <br>
and when I execute this code, it also shows the tags literally in the website
{{ noticia.noticia_texto }}
Example of text shown:
"Hello.<p>Goodbye</p>"
Is there a way to fix it?