fixing the loggedin template and redirect
diff --git a/xos/core/dashboard/sites.py b/xos/core/dashboard/sites.py
index 3e62ed9..b77a096 100644
--- a/xos/core/dashboard/sites.py
+++ b/xos/core/dashboard/sites.py
@@ -28,7 +28,7 @@
url(r'^$', self.admin_view(DashboardDynamicView.as_view()),
name="index"),
url(r'^loggedin/$', self.admin_view(LoggedInView.as_view()),
- name="index"),
+ name="loggedin"),
url(r'^test/', self.admin_view(DashboardUserSiteView.as_view()),
name="test"),
url(r'^sliceinteractions/(?P<name>\w+)/$', self.admin_view(DashboardSliceInteractions.as_view()),
diff --git a/xos/templates/registration/logged_out.html b/xos/templates/registration/logged_out.html
new file mode 100644
index 0000000..476a713
--- /dev/null
+++ b/xos/templates/registration/logged_out.html
@@ -0,0 +1,12 @@
+{% extends "admin/base_site.html" %}
+{% load i18n %}
+
+{% block breadcrumbs %}<div class="breadcrumbs"><a href="{% url 'admin:index' %}">{% trans 'Home' %}</a></div>{% endblock %}
+
+{% block content %}
+
+<p>{% trans "Thanks for spending some quality time with the Web site today." %}</p>
+
+<p><a href="{% url 'admin:loggedin' %}">{% trans 'Log in again' %}</a></p>
+
+{% endblock %}