Looks like this group isn't very active, but I thought I'd try anyway. I've been experimenting with django-lean and to get a baseline I set up a simple experiment with signup as goal. But so far, only about a third of the signups are counted as conversions within django-lean.
def custom_activate(request, activation_key):
activation_key = activation_key.lower() # Normalize before trying anything with it.
user = RegistrationProfile.objects.activate_user(activation_key)
if not user:
messages.add_message(request,
messages.SUCCESS,
'Your account could not be activated. Please register again.')
return HttpResponseRedirect('/accounts/register/')
messages.add_message(request,
messages.SUCCESS,
'Your account has been activated. Please login.')
# Signup goal reached
GoalRecord.record("signup", WebUser(request))
return HttpResponseRedirect('/accounts/login/')
Seems simple enough, but like I said most of the signups are not counted. Any ideas what I might be doing wrong?