a better way of url encoding the wholepagedness
diff --git a/planetstack/core/dashboard/sites.py b/planetstack/core/dashboard/sites.py
index a100117..194e805 100644
--- a/planetstack/core/dashboard/sites.py
+++ b/planetstack/core/dashboard/sites.py
@@ -33,6 +33,9 @@
                     name="interactions"),
                url(r'^dashboard/(?P<name>\w+)/$', self.admin_view(DashboardDynamicView.as_view()),
                     name="dashboard"),
+               url(r'^dashboardWholePage/(?P<name>\w+)/$', self.admin_view(DashboardDynamicView.as_view()),
+                    {"wholePage": True},
+                    name="dashboardWholePage"),
 	       url(r'^customize/$', self.admin_view(DashboardCustomize.as_view()),
                     name="customize"),
                url(r'^hpcdashuserslices/', self.admin_view(DashboardUserSiteView.as_view()),