From 360afb882ee742229710208330a129402dbba277 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 17 Dec 2013 13:32:45 -0500 Subject: [PATCH] fix field description --- planetstack/core/models/slice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.47.0