12345678 |
- # -*- mode: snippet -*-
- # This was cloned from a TextMate bundle for yasnippet.
- #name : ImageField (image)
- #group: django
- #key : image
- #condition: (when (boundp 'python-django-project-root) python-django-project-root)
- # --
- ${1:FIELDNAME} = models.ImageField(upload_to="${2:/dir/path}"${3:, height_field=$4}${5:, width_field=$6})
|