django.IPAddressField (ipaddress) 290 B

12345678
  1. # -*- mode: snippet -*-
  2. # This was cloned from a TextMate bundle for yasnippet.
  3. #name : IPAddressField (ipaddress)
  4. #group: django
  5. #key : ipaddress
  6. #condition: (when (boundp 'python-django-project-root) python-django-project-root)
  7. # --
  8. ${1:FIELDNAME} = models.IPAddressField(${2:blank=True})