Skip to content

adamchainz/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"
CRISPY_TEMPLATE_PACK = "boostrap3"

Also add bazaar.urls to urlpatterns

urlpatterns = patterns('',
    ...

    url(r'', include("bazaar.urls")),
)

More documentation coming soon!

Features

  • TODO

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Languages

  • Python 72.8%
  • HTML 23.0%
  • JavaScript 4.2%