| 262 | .. adminition:: Errors about ``max_length`` |
| 263 | |
| 264 | If Django gives you an error message saying that ``max_length`` is |
| 265 | not a valid argument, you're most likely using an old version of |
| 266 | Django (this version of the tutorial is written for the latest |
| 267 | development version of Django). If you do a Subversion checkout of |
| 268 | of Django's development version (see `the installation docs`_ for |
| 269 | more information), you shouldn't have any problems. If you want to |
| 270 | stick with an older version of Django, you'll want to switch to |
| 271 | `the Django 0.96 tutorial`_, since this tutorial covers several |
| 272 | features which only exist in the development version of Django. |
| 273 | |
| 274 | .. _the installation docs: ../install/ |
| 275 | .. _the Django 0.96 tutorial: ../0.96/tutorial01/ |
| 276 | |
| 505 | .. admonition:: If ``__unicode__()`` doesn't seem to work |
| 506 | |
| 507 | If you add the ``__unicode__()`` method to your models and don't |
| 508 | see any change in how they're represented, you're most likely using |
| 509 | an old version of Django (this version of the tutorial is written |
| 510 | for the latest development version of Django). If you do a |
| 511 | Subversion checkout of of Django's development version (see `the |
| 512 | installation docs`_ for more information), you shouldn't have any |
| 513 | problems. If you want to stick with an older version of Django, |
| 514 | you'll want to switch to `the Django 0.96 tutorial`_, since this |
| 515 | tutorial covers several features which only exist in the |
| 516 | development version of Django. |
| 517 | |
| 518 | .. _the installation docs: ../install/ |
| 519 | .. _the Django 0.96 tutorial: ../0.96/tutorial01/ |
| 520 | |