X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=planetstack%2Fcore%2Fmodels%2Fslice.py;h=3d18b241b46a4093b01562b6234f5e023b590e6a;hb=360afb882ee742229710208330a129402dbba277;hp=b7ca15d378b36532396c4348791dde88cc0786a1;hpb=aa47472fd891f442d7226555899a337fce74b54f;p=plstackapi.git diff --git a/planetstack/core/models/slice.py b/planetstack/core/models/slice.py index b7ca15d..3d18b24 100644 --- a/planetstack/core/models/slice.py +++ b/planetstack/core/models/slice.py @@ -19,7 +19,7 @@ class Slice(PlCoreBase): omf_friendly = models.BooleanField() description=models.TextField(blank=True,help_text="High level description of the slice and expected activities", max_length=1024) slice_url = models.URLField(blank=True, max_length=512) - site = models.ForeignKey(Site, related_name='slices', help_text="The Site this Node belongs too") + site = models.ForeignKey(Site, related_name='slices', help_text="The Site this Slice belongs to") network_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum network") router_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum router id") subnet_id = models.CharField(null=True, blank=True, max_length=256, help_text="Quantum subnet id")