diff --git a/ckanext/opendata_theme/opengov_custom_theme/templates/user/dashboard.html b/ckanext/opendata_theme/opengov_custom_theme/templates/user/dashboard.html
index a961c357..f00db5f2 100644
--- a/ckanext/opendata_theme/opengov_custom_theme/templates/user/dashboard.html
+++ b/ckanext/opendata_theme/opengov_custom_theme/templates/user/dashboard.html
@@ -24,11 +24,15 @@
{% link_for _('Profile settings'), named_route=user_edit_route, id=user.name, class_='btn btn-default', icon='cog' %}
+ {% block content_primary_nav %}
- {{ h.build_nav_icon(dashboard_index_route, _('News feed'), offset=0) }}
- {{ h.build_nav_icon(dashboard_datasets_route, _('My Datasets')) }}
- {{ h.build_nav_icon(dashboard_organizations_route, _('My {Organizations}'.format(Organizations=org_alias_pural))) }}
- {{ h.build_nav_icon(dashboard_groups_route, _('My {Groups}'.format(Groups=group_alias_pural))) }}
+ {% block dashboard_nav_links %}
+ {{ h.build_nav_icon(dashboard_index_route, _('News feed'), offset=0) }}
+ {{ h.build_nav_icon(dashboard_datasets_route, _('My Datasets')) }}
+ {{ h.build_nav_icon(dashboard_organizations_route, _('My {Organizations}'.format(Organizations=org_alias_pural))) }}
+ {{ h.build_nav_icon(dashboard_groups_route, _('My {Groups}'.format(Groups=group_alias_pural))) }}
+ {% endblock dashboard_nav_links %}
+ {% endblock %}
{% endblock %}