diff --git a/babyblotter/templates/babyblotter/nav-horizontal.html b/babyblotter/templates/babyblotter/nav-horizontal.html
index 6966095b..7bd62a28 100644
--- a/babyblotter/templates/babyblotter/nav-horizontal.html
+++ b/babyblotter/templates/babyblotter/nav-horizontal.html
@@ -13,7 +13,7 @@
-
-
+
Dashboard
diff --git a/dashboard/templates/cards/diaperchange_types.html b/dashboard/templates/cards/diaperchange_types.html
index cb0f1e13..079d902c 100644
--- a/dashboard/templates/cards/diaperchange_types.html
+++ b/dashboard/templates/cards/diaperchange_types.html
@@ -1,6 +1,6 @@
{% extends 'cards/diaperchange.html' %}
-{% block header %}Diaper Change Types{% endblock %}
+{% block header %}Diaper Changes{% endblock %}
{% block title %}
Past 5 Days
diff --git a/dashboard/urls.py b/dashboard/urls.py
index 18324ad2..4a752e5d 100644
--- a/dashboard/urls.py
+++ b/dashboard/urls.py
@@ -7,7 +7,7 @@ from . import views
urlpatterns = [
url(r'^$', views.DashboardRedirect.as_view(), name='dashboard'),
- url(r'^dashboard/$', views.Dashboard.as_view(), name='dashboard'),
+ url(r'^dashboard/$', views.Dashboard.as_view(), name='dashboard-all'),
url(r'children/(?P[^/.]+)/dashboard/$',
views.ChildDashboard.as_view(), name='dashboard-child'),
]