Home > Enterprise >  Unclosed tag on line 6: 'with'. Looking for one of: endwith
Unclosed tag on line 6: 'with'. Looking for one of: endwith

Time:11-17

I'm learning how to use Django Templates but im getting this error

Unclosed tag on line 6: 'with'. Looking for one of: endwith.

this is my html code

<!DOCTYPE html>
<html>
  <body>
    <h1>Favorite rapper:</h1>

    {% with person="2pac" %}

    <h1>{{person}}</h1>
  </body>
</html>

this is the tutorial that I'm doing

CodePudding user response:

The error makes complete sense you should close the with tag so:

<!DOCTYPE html>
<html>
  <body>
    <h1>Favorite rapper:</h1>

    {% with person="2pac" %}

    <h1>{{person}}</h1>
    {% endwith %}
  </body>
</html>
  • Related