helpers.py
author Tero Marttila <terom@fixme.fi>
Mon, 09 Feb 2009 01:17:32 +0200
changeset 52 dcb67a8f24be
parent 50 f13cf27a360b
child 54 b65a95eb9f6b
permissions -rw-r--r--
fix to use url.build properly
"""
    Some additional helpers
"""

# "inherit" qmsk.web's helpers
from qmsk.web.helpers import *

def tz_name (tz) :
    """
        Returns a string describing the given timezone
    """

    return str(tz)

def fmt_date (date) :
    """
        Formats a date
    """
    
    # XXX: hardcoded
    return date.strftime('%Y-%m-%d')