Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
madisona committed Jun 1, 2012
1 parent 3da725a commit aab2bca
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README
@@ -1,4 +1,3 @@

Django Image Helper

Provides a model mixin that has 'image' and 'thumbnail' fields.
Expand Down Expand Up @@ -30,7 +29,7 @@ RELEASE NOTES:
See the example project for a working sample. The basics:

class MyModel(models.Model):
image = fields.SidedImageField(upload_to="the_directory", size=(500, 500), thumbnail_size=(200, 200))
image = fields.SizedImageField(upload_to="the_directory", size=(500, 500), thumbnail_size=(200, 200))


Then you can access both the image and thumbnail in code or templates by:
Expand Down

0 comments on commit aab2bca

Please sign in to comment.