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