From 64c1775316fad2f11e6679d52d960b6b3e014c67 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Mon, 22 Dec 2014 17:43:25 -0800 Subject: [PATCH] change capitolization of related_name for ControllerDashboardView --- planetstack/core/models/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planetstack/core/models/dashboard.py b/planetstack/core/models/dashboard.py index 18f47f3..d26ac25 100644 --- a/planetstack/core/models/dashboard.py +++ b/planetstack/core/models/dashboard.py @@ -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) -- 2.47.0