12345678 |
- # -*- mode: snippet -*-
- # This was cloned from a TextMate bundle for yasnippet.
- #name : PositiveIntegerField (posint)
- #group: django
- #key : positiveinteger
- #condition: (when (boundp 'python-django-project-root) python-django-project-root)
- # --
- ${1:FIELDNAME} = models.PositiveIntegerField(${2:blank=True, null=True})
|