Adjustments for initial public launch of OpenCloud
diff --git a/planetstack/core/plus/views.py b/planetstack/core/plus/views.py
new file mode 100644
index 0000000..e5451ff
--- /dev/null
+++ b/planetstack/core/plus/views.py
@@ -0,0 +1,11 @@
+#views.py
+from django.views.generic import TemplateView
+
+
+class DashboardWelcomeView(TemplateView):
+    template_name = 'admin/dashboard/welcome.html'
+
+    def get(self, request, *args, **kwargs):
+        context = self.get_context_data(**kwargs)
+
+        return self.render_to_response(context=context)