Small formatting changes to model unit tests to make them look better in the model examples online

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3030 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-05-31 19:10:43 +00:00
parent 3daae59aab
commit a846155118
5 changed files with 19 additions and 18 deletions

View File

@ -1,5 +1,5 @@
""" """
3. Giving models custom methods and custom managers 3. Giving models custom methods
Any method you add to a model will be available to instances. Any method you add to a model will be available to instances.
""" """

View File

@ -1,5 +1,5 @@
""" """
27. Many-to-many and many-to-one relationships to the same table. 27. Many-to-many and many-to-one relationships to the same table
This is a response to bug #1535 This is a response to bug #1535

View File

@ -1,12 +1,11 @@
""" """
20. Object Pagination 28. Object pagination
Django provides a framework for paginating a list of objects in a few.
This is often useful for dividing search results or long lists of objects
in to easily readable pages.
Django provides a framework for paginating a list of objects in a few lines
of code. This is often useful for dividing search results or long lists of
objects into easily readable pages.
""" """
from django.db import models from django.db import models
class Article(models.Model): class Article(models.Model):

View File

@ -1,5 +1,5 @@
""" """
XXX. Transactions 15. Transactions
Django handles transactions in three different ways. The default is to commit Django handles transactions in three different ways. The default is to commit
each transaction upon a write, but you can decorate a function to get each transaction upon a write, but you can decorate a function to get

View File

@ -1,5 +1,7 @@
""" """
XX. Validation 29. Validation
This is an experimental feature!
Each model instance has a validate() method that returns a dictionary of Each model instance has a validate() method that returns a dictionary of
validation errors in the instance's fields. This method has a side effect validation errors in the instance's fields. This method has a side effect