This app attempts to provide a generic category system that multiple apps could use. It uses MPTT for the tree storage and provides a custom admin for better visualization (copied and modified from feinCMS).
Find a file
2011-02-14 11:19:48 -05:00
categories Bumped version number to 0.5.1 2011-02-14 11:19:41 -05:00
doc_src Updated the documentation! 2010-12-18 14:49:45 -05:00
docs Updated the documentation! 2010-12-18 14:49:45 -05:00
editor STATIC_URL seems to be returning as None even when not defined 2011-01-19 17:49:53 -05:00
example Refactored the templates to extend a categories/base.html 2010-12-18 14:46:37 -05:00
.gitignore Ignoring a few more things 2010-12-16 12:32:46 -05:00
CREDITS.txt Added in support materials 2009-07-07 07:31:34 -04:00
LICENSE.txt Added in support materials 2009-07-07 07:31:34 -04:00
MANIFEST.in Tweaked the setup.py and manifest for a better result 2010-05-28 09:53:31 -04:00
NOTICES.txt Added in support materials 2009-07-07 07:31:34 -04:00
README.rst Added contributors to the readme for proper recognition. 2011-01-20 07:19:05 -05:00
requirements.txt Updated the requirements to django-mptt 0.4.2 2010-12-10 06:54:55 -05:00
setup.py Renamed the README to indicate it is a reST file. 2010-12-18 14:45:36 -05:00

Django Categories grew out of our need to provide a basic hierarchical taxonomy management system that multiple applications could use independently or in concert.

As a news site, our stories, photos, and other content get divided into "sections" and we wanted all the apps to use the same set of sections. As our needs grew, the Django Categories grew in the functionality it gave to category handling within web pages.

Features of the project
=======================

**Multiple trees, or a single tree**
	You can treat all the records as a single tree, shared by all the applications. You can also treat each of the top level records as individual trees, for different apps or uses.

**Easy handling of hierarchical data**
	We use 
	`Django MPTT <http://pypi.python.org/pypi/django-mptt>`_ to manage the data efficiently and provide the extra access functions.

**Easy importation of data**
	Import a tree or trees of space- or tab-indented data with a Django management command.

**Metadata for better SEO on web pages**
	Include all the metadata you want for easy inclusion on web pages.

**Link uncategorized objects to a category**
	Attach any number of objects to a category, even if the objects themselves aren't categorized.

**Hierarchical Admin**
	Shows the data in typical tree form with disclosure triangles

**Template Helpers**
	Easy ways for displaying the tree data in templates:

	**Show one level of a tree**
		All root categories or just children of a specified category
	
	**Show multiple levels**
		Ancestors of category, category and all children of category or  a category and its children

Contributors
============

* Corey Oordt
* Josh Ourisman
* Justin Quick
* Jose Soares
* Erik Simmler