在我的mako模板中,我有:
<p>${item.addDate}</p>
它返回:
2012-12-27 19:50:00
但我想得到:
27/12/2012 19:50
有mako任何漂亮的过滤器,格式化功能吗?
答案 0 :(得分:11)
根据google,strftime
应该完成这项工作:
${post.date.strftime('%Y/%m/%d %H:%M')
另外,根据谷歌:
<%! from time import strftime as time %>
It is the ${"%d of %B" | time}