Skip to content

Latest commit

 

History

History
66 lines (41 loc) · 1.35 KB

README.rst

File metadata and controls

66 lines (41 loc) · 1.35 KB

Django-catalog

Application allows to organize objects in tree hierarhy.

This Documentation is poor for now, but it contains instructions how to set up application with default settings.

Download & Install:

Download

  1. From python package index::

    pip install djang-catalog
    
  2. From github::

    pip install -e git://github.com/redsolution/[email protected]#egg=Django-catalog
    

Quick install

  1. Include applications into INSTALLED_APPS:

    INSTALLED_APPS += [
    ...
    'mptt',
    'catalog',
    'catalog.contrib.defaults',
    ...
    ]
    
  2. Include catalog in urls.py:

    urlpatterns += patterns('',
        url(r'^catalog/', include('catalog.urls.by_slug')),
    )
    
  3. Run manage.py syncdb

For more complicated installation options look into documentation.

Features

  • Nice admin interface with drag-n-grop manipulations.
  • Generic model relationship architechture (any model can be included in catalog tree)
  • Useful templatetags library
  • Hightly customizable

Screenshot:

catalog-admin

Redsolution CMS classifiers:

Content plugins