jinja2.exceptions.TemplateSyntaxError:预期令牌'语句块结束',得到' text'

时间:2018-01-23 05:53:51

标签: python html

{{% extends "base.html %}

{% block content %}
<h1 style="text-align: center">Owner Index</h1>


<fieldset align="centre">
    <body>
    {% for value in p %}
    {{ value.id }}<br>
    {{ value.start_location }}<br>
    {{ value.start_time }}<br>
    {{ value.drop_location }}<br>
    {{ value.car_model }}<br>
    {{ value.car_number}}<br>
    {% endfor %}
    </body>
</fieldset>
{% endblock %}

我正在尝试从python中打印p中发送的值,但总是收到此错误。

1 个答案:

答案 0 :(得分:0)

替换此行

{{ extends "base.html %}

这一行

{% extends "base.html" %}