aboutsummaryrefslogtreecommitdiff
path: root/docs/index.rst
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2016-03-20 16:35:39 +0000
committerChristopher Baines <mail@cbaines.net>2016-03-20 16:35:39 +0000
commit442b4ebad8b2b33ec53a18b089282b4035f8f570 (patch)
tree7a2da513e3bad2571a4f89a431ec32a624de3d9d /docs/index.rst
parent2e528690df8792b2e70248ce18712ca653ede12b (diff)
parentd888d155344e1a000fd79b6869fbd5634b1cf2cb (diff)
downloadpython-django-tagging-442b4ebad8b2b33ec53a18b089282b4035f8f570.tar
python-django-tagging-442b4ebad8b2b33ec53a18b089282b4035f8f570.tar.gz
record new upstream branch created by importing python-django-tagging_0.4.1.orig.tar.gz and merge it
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/index.rst b/docs/index.rst
index c73cbe4..5dd2582 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -139,7 +139,7 @@ To register a model, import the ``tagging.registry`` module and call its
class Widget(models.Model):
name = models.CharField(max_length=50)
- tagging.register(Widget)
+ register(Widget)
The following argument is required:
@@ -160,7 +160,7 @@ with your model class' definition:
See `TagDescriptor`_ below for details about the use of this
descriptor.
-``tagged_item_manger_attr``
+``tagged_item_manager_attr``
The name of an attribute in the model class which will hold a custom
manager for accessing tagged items for the model. Default:
``'tagged'``.
@@ -884,3 +884,4 @@ The tag must be an instance of a ``Tag``, not the name of a tag.
Example::
{% tagged_objects comedy_tag in tv.Show as comedies %}
+