diff --git a/seahub/group/templates/group/group_base.html b/seahub/group/templates/group/group_base.html
index 6a2bff55eb..147ec6dbf8 100644
--- a/seahub/group/templates/group/group_base.html
+++ b/seahub/group/templates/group/group_base.html
@@ -7,6 +7,7 @@
{% block main_content %}
+
{% block left_panel %}
diff --git a/seahub/help/templates/help/base.html b/seahub/help/templates/help/base.html
index 8388f9ca19..989b480b26 100644
--- a/seahub/help/templates/help/base.html
+++ b/seahub/help/templates/help/base.html
@@ -4,6 +4,7 @@
{% block main_content %}
+
{% trans "Desktop Client and Syncing" %}
- {% trans "Install and sync Files" %}
diff --git a/seahub/institutions/templates/institutions/base.html b/seahub/institutions/templates/institutions/base.html
index 80fed73282..44a01c57ae 100644
--- a/seahub/institutions/templates/institutions/base.html
+++ b/seahub/institutions/templates/institutions/base.html
@@ -8,6 +8,7 @@
{% block main_content %}
+
{% block left_panel %}
{{ request.user.institution.name }}
diff --git a/seahub/profile/templates/profile/set_profile.html b/seahub/profile/templates/profile/set_profile.html
index 70c2fcba25..72993ed0e4 100644
--- a/seahub/profile/templates/profile/set_profile.html
+++ b/seahub/profile/templates/profile/set_profile.html
@@ -8,6 +8,7 @@
+
- {% trans "Profile" %}
- {% trans "Language" %}
diff --git a/seahub/templates/base.html b/seahub/templates/base.html
index af7950215c..5a111f07e5 100644
--- a/seahub/templates/base.html
+++ b/seahub/templates/base.html
@@ -42,6 +42,7 @@
{% endif %}
+
{% block header_right %}
{% if request.user.is_authenticated %}
@@ -196,6 +197,19 @@ $('#info-bar .close').click(function() {
});
})();
{% endif %}
+
+if ($('.side-nav').length) {
+ $('#logo').addClass('hidden-sm-down');
+ $('#js-toggle-side-nav').removeClass('hide');
+}
+$('#js-toggle-side-nav').click(function() {
+ $('.side-nav').css({'left': 0});
+ return false;
+});
+$('.js-close-side-nav').click(function() {
+ $('.side-nav').css({'left': '-300px'});
+ return false;
+});
{% block extra_script %}{% endblock %}