码迷,mamicode.com
首页 > 其他好文 > 详细

Django TemplateSyntaxError Could not parse the remainder: '()'

时间:2016-06-13 01:08:27      阅读:1639      评论:0      收藏:0      [点我收藏+]

标签:

返回的数据是列表集合,如

n [5]: a = set()                                                                  

In [6]: a.add((1, 3))

In [7]: a
Out[7]: {(1, 3)}

在模板中使用方式如下:

 {% for archive in archive_lists  %}
<li>
<a href="/archive/{{ archive.0 }}/{{ archive.1 }} ">{{ archive }}</a>
</li>
{% endfor %}

 

 

参考见:

http://stackoverflow.com/questions/5231171/django-templatesyntaxerror-could-not-parse-the-remainder

  

Django TemplateSyntaxError Could not parse the remainder: '()'

标签:

原文地址:http://www.cnblogs.com/wswang/p/5579179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!