Installation

Attention

Django Candy is currently a pre-alpha project. Most of the things don’t work. However, if you’re curious, you can still try it out.

Install using pip:

$ pip install django-candy

Update your project’s settings:

# settings.py
INSTALLED_APPS = [
    # ...
    'django_candy'
]

Update your project’s urls:

# urls.py
urlpatterns = [
    # ...
    path('candy/', include('django_candy.urls')),
]

Run the server and visit http://127.0.0.1:8000/candy/ from your browser to see the admin in action.

For logging in, you need to create a user using Django’s createsuperuser command.

Next, go to Quickstart page for instructions about using the admin site.