Tag start is not closed

Asked 2 years ago, Updated 2 years ago, 80 views

Tag start is not closed error occurred

<img class="img-responsive" src="{%static" images/{{photo.image}}"%}">

I wrote in the html file...

https://docs.djangoproject.com/en/1.10/howto/static-files/
I don't know what's wrong with it because I used the method of writing the official document.
How can I fix it?

python django

2022-09-30 18:18

1 Answers

{%} contains {{}.
How about writing one of the following?

<img class="img-responsive" src="{%static'images'%}/{{photo.image}}}">

or

<img class="img-responsive" src="{%static'images/'+photo.image%}">


2022-09-30 18:18

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.