commit | 082fcd4c7898075bef1efff9a33e6836b6dbd061 | [log] [tgz] |
---|---|---|
author | Scott Baker <smbaker@gmail.com> | Fri Feb 12 17:41:52 2016 -0800 |
committer | Scott Baker <smbaker@gmail.com> | Fri Feb 12 17:41:52 2016 -0800 |
tree | 7ee9e14f137252b27f5dfaf05dea243950c89582 | |
parent | 7b897e366bbf258140ce8622af71b427dd133977 [diff] |
add inuse field
diff --git a/xos/core/models/network.py b/xos/core/models/network.py index 8dd0b17..ccc248c 100644 --- a/xos/core/models/network.py +++ b/xos/core/models/network.py
@@ -340,6 +340,7 @@ class AddressPool(PlCoreBase): name = models.CharField(max_length=32) addresses = models.TextField(blank=True, null=True) + inuse = models.TextField(blank=True, null=True) def __unicode__(self): return u'%s' % (self.name)