Use this app to tag objects like you tag your friends on facebook, but using any objects as the tagger and the tagged. Think of a `User` tagging a `Friend` in a `Photo` all of them being different models.
Project description
Welcome to the documentation for django-o2o_tagging! Use this app to tag objects like you tag your friends on facebook, but using any objects as the tagger, the tagged and the tagged in. Think of a User tagging a Friend in a Photo all of them being different models.
Quick start
Install using pip:
pip install django-o2o_tagging
Add o2o_tagging to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'o2o_tagging', )
Usage
Models
Tag your objects:
... tag = O2OTag.objects.tag(tagger, tagged, tagged_in)
Get for tagged in objects:
... tags = O2OTag.objects.for_tagged_in(tagged_in)
Get for tagger objects:
... tags = O2OTag.objects.for_tagger(tagger)
Get for tagged objects:
... tags = O2OTag.objects.for_tagged(tagged)
You can then filter:
... tags.for_tagger(tagger).for_tagged(tagged)
URLs
You can add this views to your urls:
... ('^tagging/$', include('o2o_tagging')),
Views
o2o_taggin provides two views:
TagCreateView TagsCreateView
Running the Tests
You can run the tests with via:
python setup.py test
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
File details
Details for the file django-o2o_tagging-0.2.2.tar.gz
.
File metadata
- Download URL: django-o2o_tagging-0.2.2.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b272b0313254068ef5ed39516e736de6bd3fe5c19a8a33b1c282ce4c3dd7f40 |
|
MD5 | 9965b9e3435efcef49957f45148dd205 |
|
BLAKE2b-256 | 91e3ec4f53c9c60096a357da45d9c5447a3673640cfb70357b2c7a8ed0d057e4 |