Skip to content

redsolution/django-catalog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/django-catalog.git@2.0.0#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