Is there a way to make a block optional in Django template

女生的网名这么多〃 提交于 2021-02-06 08:45:44

问题


In Django's templates system, if I have a block that I want to make optional using an if statement, how do I do it?

I was trying this:

{% if val %}{% block title %}Archive {{ foo }}{% endblock %}{% endif %}

But that doesn't work. Is there a way to do that, so that for a given value (in this case Null) the block isn't issued and the base template uses the original values?

Edit: Let me be a little more specific, so that it is easier to answer.

I have a page with 10 entries per page. The user can then go on to the next page and see the next ten items. For each further page they go, past the first, I would like to have the title tag say something like "Archive 1" or "Archive 10" but if they get back to the original page, it is no longer archive, and it should just go to the original site title already given in the base templates.


回答1:


As far as I understand blocks are placeholders to be "overridden" in the child templates. They have to be defined at "compile time" and not at "run time".

As for your specific problem why not modify the title based on the page number (assuming you use pagination)? Something like this:

{% block title %}
    {% ifequal page 1 %}Current{% else %}Archive {{ page }}{% endifequal %}
{% endblock %}



回答2:


I ran into a similar issue with a project I'm working on. Here's how I resolved it using {{ block.super }} to pull the default value from the parent block:

My parent template contains:

{% block title %}Default Title{% endblock %}

My child template contains:

{% block title %}
    {% if new_title %}{{ new_title }}{% else %}{{ block.super }}{% endif %}
{% endblock %}

*Note: You may want to wrap the code in {% spaceless %}{% endspaceless %} if you plan to use the result in an HTML title tag.

(It looks like Jordan Reiter posted the same solution in the comments of the original question a bit before my response.)




回答3:


I would only have to add to the good answers above that depending on the Django version sometimes the {{ block.super }} puts the content from the master twice, this seems to happen in the most recent versions of Django.

I am using Django 1.8 and whenever i put the {{ block.super }} it started to behave in that way just as an addition to the Jamie answer i can say that in the base template you can put the content you wish

{% block title %} Default Title {% endblock %}

And then in the child if you want the footer to be inherited and displayed just do not do anything it will be. But if you do not want that block to be displayed then put the tag in the child with empty content just like this:

{% block title %}

{% endblock %}

Then it will be hidden once it is rendered also you can overwrite the content on it if you wish.



来源:https://stackoverflow.com/questions/3458634/is-there-a-way-to-make-a-block-optional-in-django-template

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!