Fix browsing by modifications, take into account every comment in a thread (instead of only the first two levels in each thread).
# 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)