如何扩展谷歌应用程序引擎上的父html页面
templates
| ....a.html
|.....admin
|..... index.html
|..... b.html
在谷歌应用程序引擎模板中,我可以使用它来扩展index.html中的b.html:
{% extends 'b.html' %}
但是如何扩展index.html中的a.html。
谢谢
templates
| ....a.html
|.....admin
|..... index.html
|..... b.html
in google app engine templates, i can use this to extends b.html in index.html:
{% extends 'b.html' %}
but how to extends a.html in index.html.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个模板只能有一个扩展。这就像 C# 和 Java 等 OOP 语言中的单继承。
这个问题有一个答案,将为您提供一些铺设的好主意出你的模板并有一个好的模板继承方案
You can only have one extends per template. It's like single inheritance in OOP languages like C# and Java.
This question has an answer that will give you some good ideas for laying out your templates and having a good template inheritence scheme