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.3

  1. __unicode__ method now returns a sensible result.

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.3.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

django_category-0.1.3-py2.7.egg (16.0 kB view details)

Uploaded Source

File details

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

File metadata

File hashes

Hashes for django-category-0.1.3.tar.gz
Algorithm Hash digest
SHA256 38cbf1906f5ac8e0dd8182d30869d20a0ac52c3b9525d112d11eabfa924f73ef
MD5 df829892a7b1e8fa30a1b13a8bc0eef5
BLAKE2b-256 139331e996ca1ecffc2b1c98012b4846919a34b22f96667f707ba1926ec9d9ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for django_category-0.1.3-py2.7.egg
Algorithm Hash digest
SHA256 f410a54f8228121c7e0299a333a5694d4afc09bfb818d809d804deb90d580bf1
MD5 f303da4b1c2df29e823d04216f33f02b
BLAKE2b-256 46080eda43a5a5565a3a6fd66a6ccdde8eab970b60708dbab2203fdca0601eaf

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