src/cm/utils/dj.py
author gibus
Wed, 11 Sep 2013 23:13:01 +0200
changeset 532 0bad3613f59d
parent 0 40c8f766c9b8
permissions -rw-r--r--
Reverse to YUI 3.0.0 since with YUI.3.10.3, comment content including words 'paragraph' or 'section' do not show up on Firefox, this is weird and has to be investigated.

# django helpers collections
from django.conf import settings
from django.core.urlresolvers import reverse

def absolute_reverse(view_id, args):
    return settings.SITE_URL + reverse(view_id, args=args)