未封闭的标签'阻止'寻找其中一个:endblock

时间:2015-03-25 12:17:00

标签: python html django django-templates

<!--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 % }

我刚收到错误

  

“Unclosed tag'block'。寻找其中一个:endblock”

请帮忙。

2 个答案:

答案 0 :(得分:3)

重要的是不要添加额外的空格并遵循语法。替换:

{ % endblock % }

使用:

{% endblock %}

答案 1 :(得分:0)

只需将list(filter(lambda s: re.search(r'[0-9]', s) and re.search(r'[a-z]', s), re.findall(r'\b[a-z0-9]{8}\b', str)))更改为{% block title %}