Ticket #10779: 10779.diff
File 10779.diff, 535 bytes (added by , 16 years ago) |
---|
-
docs/topics/files.txt
25 25 :class:`~django.db.models.ImageField`, Django provides a set of APIs you can use 26 26 to deal with that file. 27 27 28 Consider the following model, using a ``FileField`` to store a photo::28 Consider the following model, using an ``ImageField`` to store a photo:: 29 29 30 30 class Car(models.Model): 31 31 name = models.CharField(max_length=255)