更改 Django 中的扩展页面

发布于 2024-10-14 09:52:53 字数 431 浏览 2 评论 0原文

我们可以将页面名称传递给 django 中的扩展标签吗

,即我想做类似

EDIT

 if(login):

     return render_to_response('/p_change/',

context_instance=RequestContext(request,{'page':'newpage.html'}))

else:
    return render_to_response('/p_h/',

context_instance=RequestContext 的操作(请求,{'page':'newpage1.html'}))

 {% extends page %}

Can we pass a page name to a extends tag in django

i.e, i want to do something like

EDIT

 if(login):

     return render_to_response('/p_change/',

context_instance=RequestContext(request,{'page':'newpage.html'}))

else:
    return render_to_response('/p_h/',

context_instance=RequestContext(request,{'page':'newpage1.html'}))

 {% extends page %}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

拥抱影子 2024-10-21 09:52:53

可以将变量传递给extends。来自 django 书籍

在大多数情况下,{% 的参数
extends %} 将是一个字符串,但它
也可以是一个变量,如果你不这样做
知道父模板的名称
直到运行时。这可以让你做一些
很酷、充满活力的东西。

但是,请注意,有一个警告!

如果您在
模板,必须是第一个
该模板中的模板标签。
否则,模板继承将不会
工作。

这意味着您必须将页面选择逻辑放在视图中(而不是放在模板中,因为它将出现在 extend 标记之前,从而使模板继承无效)并在上下文中传递变量。有关更多详细信息,请参阅此答案

更新

在您更新的问题中,您的代码几乎就在那里,除了 render_to_response 应该是模板文件名,而不是目录。

我会将您的内容重写为:

if login: 
    sub_page = '/p_change/newpage.html'
else:
    sub_page = '/p_h/newpage1.html'

# 'base.html' being the base template containing {% extends page %}
return render_to_response('base.html', context_instance=RequestContext(request, {
    'page' : sub_page,
}))

当然,我只是猜测您想要实现的目标,并且很可能是错误的。

It is possible to pass a variable to extends. From django book:

In most cases, the argument to {%
extends %} will be a string, but it
can also be a variable, if you don’t
know the name of the parent template
until runtime. This lets you do some
cool, dynamic stuff.

However, do note that there is a caveat!

If you use {% extends %} in a
template, it must be the first
template tag in that template.
Otherwise, template inheritance won’t
work.

This means you'll have to place the page selection logic in your views (and not in your template as that will come before the extend tag hence invalidating template inheritance) and pass in the variable in your context. See this answer for more details.

Update

In your updated question, your code is almost there, except that the first argument to render_to_response should be an template filename, not a directory.

I would rewrite what you have as:

if login: 
    sub_page = '/p_change/newpage.html'
else:
    sub_page = '/p_h/newpage1.html'

# 'base.html' being the base template containing {% extends page %}
return render_to_response('base.html', context_instance=RequestContext(request, {
    'page' : sub_page,
}))

Of course, I'm just speculating on what you're trying to achieve and may well be mistaken.

回忆那么伤 2024-10-21 09:52:53

如果您需要的话,您可以将变量传递给extends。

{% extends page %}

You can pass a variable to extends, if that's what you're asking.

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