コード例 #1
0
ファイル: tags.py プロジェクト: rkaczorek/astrobin
def to_user_timezone(value, user):
    from astrobin.utils import to_user_timezone as tut
    if user.is_authenticated():
        return tut(value, user.userprofile)
    return value
コード例 #2
0
ファイル: tags.py プロジェクト: astrobin/astrobin
def to_user_timezone(value, user):
    from astrobin.utils import to_user_timezone as tut
    if user.is_authenticated():
        return tut(value, user.userprofile)
    return value