我有一个 Django 网站,我在 views.py 文件中使用了这样的列表:
EventsList = []
EventsList.append({'ipaddress':'192.168.200.1', 'starttime':'02/12/2013 13:59:42', 'endtime':'02/12/2013 14:59:42'});
EventsList.append({'ipaddress':'192.168.200.2', 'starttime':'02/12/2013 13:59:42', 'endtime':'02/12/2013 14:59:42'});
EventsList.append({'ipaddress':'192.168.200.3', 'starttime':'02/12/2013 13:59:42', 'endtime':'02/12/2013 14:59:42'});
在我的 HTML 页面上,我希望执行以下操作:
<p><b>{% blocktrans with len(EventsList) as Count %}{{ Count }}</b> events detected from <b>{{ first_session_start_time }}</b> to <b>{{ last_session_end_time }}</b>.{% endblocktrans %}</p>
但我在页面加载时收到错误:
Exception Type: TemplateSyntaxError
Exception Value:
Could not parse the remainder: '(Events)' from 'len(Events)'
我该如何解决这个问题?