【发布时间】:2015-02-10 05:29:22
【问题描述】:
我收到此错误(无效的块标记:'endblock')指向第 12 行。我不知道为什么,因为我的块对我来说似乎没问题。
1{% extends 'base.html' %} <!-- tells that you use the base for most of the look -->
3
4 {% block jumbotron}
5 <div class="jumbotron">
6 <div class="container">
7 <h1>Connect your world</h1>
8 <p>This is a template .</p>
9 <p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more »</a></p>
10 </div>
11 </div>
12 {% endblock %}
【问题讨论】:
-
你需要一个额外的
%用于endblock吗?您在block jumbotron中缺少%吗?
标签: python django django-templates django-views