pombredanne / django-category

Django categorize content app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Category

Simple category app providing category and tag models.

  1. Install or add django-category to your Python path.
  2. Add category to your INSTALLED_APPS setting.

Enable categorization and/or tagging on a model by creating ManyToMany fields to the models provided by django-category, for example:

from django import models

class MyModel(models.Model):
    categories = models.ManyToManyField(
        'category.Category',
        help_text='Categorize this item.'
    )
    tags = models.ManyToManyField(
        'category.Tag',
        help_text='Tag this item.'
    )

Category model to be used for categorization of content. Categories are high level constructs to be used for grouping and organizing content, thus creating a site's table of contents.

Short descriptive title for the category to be used for display.

Some titles may be the same and cause confusion in admin UI. A subtitle makes a distinction.

Short descriptive unique name to be used in urls.

Optional parent to allow nesting of categories.

Limits category scope to selected sites.

Tag model to be used for tagging content. Tags are to be used to describe your content in more detail, in essence providing keywords associated with your content. Tags can also be seen as micro-categorization of a site's content.

Short descriptive name for the tag to be used for display.

Short descriptive unique name to be used in urls.

Categories to which the tag belongs.

About

Django categorize content app.

License:BSD 3-Clause "New" or "Revised" License