Skip to main content

Django categorize content app.

Project description

Django Category

Simple category app providing category and tag models.

Installation

  1. Install or add django-category to your Python path.

  2. Add category to your INSTALLED_APPS setting.

Usage

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.'
    )

Models

class Category

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.

Category.title

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

Category.subtitle

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

Category.slug

Short descriptive unique name to be used in urls.

Category.parent

Optional parent to allow nesting of categories.

Category.sites

Limits category scope to selected sites.

class Tag

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.

Tag.title

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

Tag.slug

Short descriptive unique name to be used in urls.

Tag.categories

Categories to which the tag belongs.

Authors

Praekelt Foundation

  • Shaun Sephton

  • Jonathan Bydendyk

  • Hedley Roos

Changelog

0.1.2

  1. Fix tree view.

0.1.1

  1. Added sites and subtitle fields.

0.1

  1. Dependency cleanup.

0.0.6

  1. Added get_absolute_url on Category

0.0.5

  1. Use prepopulate_fields for admin interface

  2. Parent category field added

  3. South migration path created

  4. Tree view of categories and tags

0.0.4 (2011-08-24)

  1. Docs, testrunner.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-category-0.1.2.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

django_category-0.1.2-py2.7.egg (15.9 kB view details)

Uploaded Source

File details

Details for the file django-category-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django-category-0.1.2.tar.gz
Algorithm Hash digest
SHA256 41c33f743a23a04f864f28d9da29781085daf486cc6d55afd682c05d17a29405
MD5 fc73f3e38884d5e6bc4b71157e9ab0c3
BLAKE2b-256 0f089c0b3b66b986a7b15195f2ee1bdc7fd281b983571d19913b6be29ffbd84b

See more details on using hashes here.

Provenance

File details

Details for the file django_category-0.1.2-py2.7.egg.

File metadata

File hashes

Hashes for django_category-0.1.2-py2.7.egg
Algorithm Hash digest
SHA256 96ece0bb3fad920e25aeb7e220a7ce9ee1bdf9da203256d473ae2059c41a0e45
MD5 7f6f4983ea5b100198d27a4b23dd4f66
BLAKE2b-256 ea8bb8a0c28d95e9ed9b9beb630b7ad07c977be2fabea432fa1154a0466bdedd

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page