Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unclosed tag 'block'. Looking for one of: endblock

<!--this is my base.html file -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jumbotron Template for Bootstrap</title>
</head>
<body>
{% block content %}  {% endblock %}
<p>&copy; Company 2014</p>
</body>
</html> 


<!-- this is my signup.html file-->
{% extends "base.html" %}
{% block title %}

    <form method = 'POST' action = ''>{% csrf_token %}

    <label for="your_name">Your name: </label>
    {{form.as_p}}
    <input type = 'submit'>
    </form>
{ % endblock % }

I am just getting error

"Unclosed tag 'block'. Looking for one of: endblock"

Please help.

like image 682
user3290624 Avatar asked Nov 04 '25 21:11

user3290624


1 Answers

It is important not to add extra spaces and follow the syntax. Replace:

{ % endblock % }

with:

{% endblock %}
like image 121
alecxe Avatar answered Nov 07 '25 15:11

alecxe