summaryrefslogtreecommitdiffstats
path: root/dashboard/src/resource_inventory
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-02-22 12:38:04 -0500
committerParker Berberian <pberberian@iol.unh.edu>2019-02-22 12:41:32 -0500
commit879ebf85275e5f8942eb1a1e30d76cbee2a70715 (patch)
treec08ad45c8b51d699ab25ec3f58c44a8874c0c5bf /dashboard/src/resource_inventory
parent16f1c65ac45a519a7ed710bca3068d6433fb2522 (diff)
Fixed Selection of single hosts in quick booking
Change-Id: I8ca860ee23f9df44e38da76d539729771d32c455 Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'dashboard/src/resource_inventory')
-rw-r--r--dashboard/src/resource_inventory/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/src/resource_inventory/models.py b/dashboard/src/resource_inventory/models.py
index e1f2aa3..ebf63cc 100644
--- a/dashboard/src/resource_inventory/models.py
+++ b/dashboard/src/resource_inventory/models.py
@@ -266,7 +266,7 @@ class Image(models.Model):
public = models.BooleanField(default=True)
host_type = models.ForeignKey(HostProfile, on_delete=models.CASCADE)
description = models.TextField()
- os = models.ForeignKey(Opsys, null=True, on_delete=models.CASCADE) #sentinal?
+ os = models.ForeignKey(Opsys, null=True, on_delete=models.CASCADE)
def __str__(self):
return self.name