1 """
2 Helper functions for use in templates
3 """
4
5 import time
6
7 import config
8
9 def now () :
10 """
11 Returns the current date/time
12 """
13
14 return time.strftime(config.DATETIME_FMT)
15