{{% 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中发送的值,但总是收到此错误。
答案 0 :(得分:0)
替换此行
{{ extends "base.html %}
这一行
{% extends "base.html" %}