Ticket #10779: 10779.diff

File 10779.diff, 535 bytes (added by Tim Graham, 15 years ago)
  • docs/topics/files.txt

     
    2525:class:`~django.db.models.ImageField`, Django provides a set of APIs you can use
    2626to deal with that file.
    2727
    28 Consider the following model, using a ``FileField`` to store a photo::
     28Consider the following model, using an ``ImageField`` to store a photo::
    2929
    3030    class Car(models.Model):
    3131        name = models.CharField(max_length=255)
Back to Top