Skip to content

giok57/django-bazaar

Repository files navigation

Django Bazaar

image

image

image

It's a bazaar

Documentation

The full documentation is at http://django-bazaar.rtfd.org.

Quickstart

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!

Features

  • TODO

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published