0

我的问题是,我可以重复几次 {include} 标签吗?

我认为使用 FOR 或类似的东西,但我不知道该怎么做

{% include tag%}

有什么想法吗?我是 django 的新手。

4

1 回答 1

1

尝试:

网址.py

url(u'your_url/$', YourView.as_view(), name='your_view'),

视图.py

class YourView(TemplateView):

    def get_context_data(self, *args, **kwargs):
        tags = [
             'template_one.html',
             'template_two.html',
        ]

        return {
            'tags': tags,
        }

模板.html

{% for tag in tags %}
     {% include tag %}
{% endfor %}

希望标签是一些模板文件的路径。

于 2013-10-15T02:25:42.590 回答