src/cm/utils/dj.py
author Simon Descarpentries <sid@sopinspace.com>
Tue, 20 Mar 2012 16:08:18 +0100
changeset 401 ada83f9211e3
parent 0 40c8f766c9b8
permissions -rw-r--r--
Update contributors and licence files, adding Gibus and I in it, and the content of the AGPL licence.

# 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)