forked from jazzband/django-taggit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.txt
45 lines (32 loc) · 1.04 KB
/
index.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Welcome to django-taggit's documentation!
=========================================
``django-taggit`` is a reusable Django application designed to making adding
tagging to your project easy and fun.
``django-taggit`` works with Django 1.4.5+ and Python 2.7-3.X.
.. warning::
Since version 0.10.0 taggit uses South for database migrations.
This means that users who are upgrading to 0.10.0 and up will have to fake
the initial migration, like this::
python manage.py migrate taggit --fake 0001
python manage.py migrate
Since version 0.12.0 taggit uses Django migrations by default. South users
have to adjust their settings::
SOUTH_MIGRATION_MODULES = {
'taggit': 'taggit.south_migrations',
}
For more information, see `south documentation`__
.. toctree::
:maxdepth: 2
getting_started
forms
admin
api
custom_tagging
external_apps
changelog
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
__ http://south.readthedocs.org/en/latest/