change capitolization of related_name for ControllerDashboardView
authorScott Baker <smbaker@gmail.com>
Tue, 23 Dec 2014 01:43:25 +0000 (17:43 -0800)
committerScott Baker <smbaker@gmail.com>
Tue, 23 Dec 2014 01:43:25 +0000 (17:43 -0800)
planetstack/core/models/dashboard.py

index 18f47f3..d26ac25 100644 (file)
@@ -7,7 +7,7 @@ from django.contrib.contenttypes import generic
 class DashboardView(PlCoreBase):
     name = models.CharField(max_length=200, unique=True, help_text="Name of the View")
     url = models.CharField(max_length=1024, help_text="URL of Dashboard")
-    controllers = models.ManyToManyField(Controller, blank=True, related_name="dashboardViews", through='ControllerDashboardView')
+    controllers = models.ManyToManyField(Controller, blank=True, related_name="dashboardviews", through='ControllerDashboardView')
 
     def __unicode__(self):  return u'%s' % (self.name)