4

I'm looking for a simple Django app that restricts registration to users who have an invite code (for running a private beta). I'm using django-registration, so something that plays nicely with it would be great.

Looks like there are several viable options:

django-inviting
django-privatebeta
django-invite

Given the wealth of options, I'm wondering if people have found a particular app more flexible and/or easier to work with than the others? Are there other apps that I should be aware of?

Joe
  • 25,307
  • 12
  • 38
  • 35
  • 1
    If the proverbial wheel's simple enough, sometimes reinventing it is the cheaper option. I always just roll my own with a salted, hashed random string. Takes 20 minutes and doesn't have the integration overhead. – Kyle Wild Jan 23 '11 at 00:43

2 Answers2

1

You miss django-invitation which is really quickly integrated with django-registration.
I just had to hack it a bit to include the name of the inviter in the email message.

Dominique Guardiola
  • 3,431
  • 2
  • 22
  • 22
-1

django-invitation is a good choice among the four.

Esailija
  • 138,174
  • 23
  • 272
  • 326
Leo
  • 11
  • 1