12345678 |
- # -*- mode: snippet -*-
- # This was cloned from a TextMate bundle for yasnippet.
- #name : FilePathField (filepath)
- #group: django
- #key : filepath
- #condition: (when (boundp 'python-django-project-root) python-django-project-root)
- # --
- ${1:FIELDNAME} = models.FilePathField(path="${1:/location/of/choices}"${2:, match="${3:regex}"}${4:, recursive=True})
|