A Django app to manage a private beta phase.
Project description
Django app to manage a private beta phase for a website.
This app provides users with the change to sign up for a private beta - by providing their email address.
The administrators of the website can manually invite people to join the beta from the Django admin panel.
The signup view of the app is only accessible by providing the correct invitation code in the url.
Installation
Install django-hunger using pip or easy_install.
Add hunger to INSTALLED_APPS in settings.py.
Add hunger.middleware.BetaMiddleware to MIDDLEWARE_CLASSES.
Create templates beta/request_invite.html, beta/confirmation.html, and beta/used.html. The request_invite.html template receives a Context instance with a Django form for the email signup form. The confirmation.html and used.html templates are flatpages for confirming signup and used invites.
By default Hunger redirects to “/beta/” if a users is not logged in. So your “request_invite” templates should be located here.
Settings
- BETA_INVITE_CODE_LENGTH
String length of the invitation_code (Default: 8)
- BETA_ENABLE_BETA
Enable hunger middleware (Default: True)
- BETA_NEVER_ALLOW_VIEWS
Never allow access to these views (Default: [])
- BETA_ALWAYS_ALLOW_VIEWS
Always let unregistered user see these view (Default: [])
- BETA_ALWAYS_ALLOW_MODULES
Convenience settings - allow all views and a given module (Default: [])
- BETA_ALLOW_FLATPAGES
If using flatpages app (Default: [])
- BETA_SIGNUP_VIEWS
Which views are used for signing up (Default: [])
- BETA_SIGNUP_CONFIRMATION_VIEW
The view which comes directly after a user has signed up (Default: '')
- BETA_REDIRECT_URL
If user is not logged in and trying to access a hidden view - where should he/she be redirected (Default: /beta/)
- BETA_SIGNUP_URL
What is the url for the signup page (Default: /register/)
- BETA_EMAIL_TEMPLATES_DIR
Directory containing email templates (Default: hunger)
- BETA_EMAIL_MODULE
Module where the email functions are (Default: hunger.email)
- BETA_EMAIL_CONFIRM_FUNCTION
Function for sending out confirmation that user is on waiting list (Default: beta_confirm)
- BETA_EMAIL_INVITE_FUNCTION
Function for sending out the invitation code (Default: beta_invite)
Integration with django_templated_email
If django_templated_email - https://github.com/bradwhittington/django-templated-email is installed, you can use customized *.email templates with an example setting such as:
BETA_EMAIL_TEMPLATES_DIR = 'beta'
And create the following templates:
<project_dir>/templates/beta/beta_confirm.email <project_dir>/templates/beta/beta_invite.email
Credit
Hunger is partially based on: - https://github.com/pragmaticbadger/django-privatebeta
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-hunger-1.0.10.tar.gz
.
File metadata
- Download URL: django-hunger-1.0.10.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4796511b5567a6955e53211b7b10978ce00ed9ed47ffaf44fba1ef8ed218146d |
|
MD5 | e4437d4ac06faf92c9b00f5a890ac972 |
|
BLAKE2b-256 | 1c2d6c3b6c9566cf5b259f5943be7882cccbebe9c8c68c9d0ac759c092224bf9 |
File details
Details for the file django_hunger-1.0.10-py2-none-any.whl
.
File metadata
- Download URL: django_hunger-1.0.10-py2-none-any.whl
- Upload date:
- Size: 127.0 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8e04df88480c90eb072af5b966c59e89a64ce6514dc18e292801c8490ec09ae |
|
MD5 | 753b65a7755a301bdd424dcece045b16 |
|
BLAKE2b-256 | 8162e117b969e5b536c1f9e7b511e0995d58ac5102a6ea34bb6113a42626d59c |