使用Mako模板格式化日期

时间:2012-12-31 11:35:16

标签: python pyramid mako

在我的mako模板中,我有:

<p>${item.addDate}</p>

它返回:

  

2012-12-27 19:50:00

但我想得到:

  

27/12/2012 19:50

有mako任何漂亮的过滤器,格式化功能吗?

1 个答案:

答案 0 :(得分:11)

根据googlestrftime应该完成这项工作:

${post.date.strftime('%Y/%m/%d %H:%M')

另外,根据谷歌:

<%! from time import strftime as time %>
It is the ${"%d of %B" | time}