如何扩展谷歌应用程序引擎上的父html页面

发布于 2024-09-08 00:54:41 字数 267 浏览 6 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私藏温柔 2024-09-15 00:54:41

每个模板只能有一个扩展。这就像 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文