Installation#

Requirements#

Python 3.7 to 3.10 supported.

Django 3.2 to 4.0 supported.

Installation#

  1. Install with pip:

    python -m pip install django-invitations
    
  2. Add “invitations” to INSTALLED_APPS

    INSTALLED_APPS = [
        ...
        "invitations",
        ...
    ]
    

Note

Allauth support

For allauth support invitations must come after allauth in the INSTALLED_APPS

  1. Add invitations urls to your urlpatterns:

    urlpatterns = [
        ...
        path("invitations/", include('invitations.urls', namespace='invitations')),
        ...
    ]
    
  2. Run migrations

    python manage.py migrate