It's a bazaar
The full documentation is at http://django-bazaar.rtfd.org.
Install Django Bazaar:
pip install django-bazaar
To use it in a project add to INSTALLED_APPS the following:
INSTALLED_APPS = (
# ...
'bazaar',
'bazaar.goods',
'bazaar.listings',
'bazaar.warehouse',
'crispy_forms',
'stored_messages',
'rest_framework',
'djmoney_rates',
)
Also add django.core.context_processors.request to TEMPLATE_CONTEXT_PROCESSORS
from django.conf import global_settings
TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
'django.core.context_processors.request',
)
A few more settings to go
LOGIN_REDIRECT_URL = "bazaar:home"
More documentation coming soon!
- TODO