diff --git a/app/coffee/modules/nav.coffee b/app/coffee/modules/nav.coffee
index da342c69..d8961738 100644
--- a/app/coffee/modules/nav.coffee
+++ b/app/coffee/modules/nav.coffee
@@ -105,7 +105,7 @@ ProjectMenuDirective = ($log, $compile, $auth, $rootscope, $tgAuth, $location) -
Search
- <% if (project.is_backlog_activated) { %>
+ <% if (project.is_backlog_activated && project.my_permissions.indexOf("view_us") != -1) { %>
@@ -113,21 +113,21 @@ ProjectMenuDirective = ($log, $compile, $auth, $rootscope, $tgAuth, $location) -
<% } %>
- <% if (project.is_kanban_activated) { %>
+ <% if (project.is_kanban_activated && project.my_permissions.indexOf("view_us") != -1) { %>
Kanban
<% } %>
- <% if (project.is_issues_activated) { %>
+ <% if (project.is_issues_activated && project.my_permissions.indexOf("view_issues") != -1) { %>
Issues
<% } %>
- <% if (project.is_wiki_activated) { %>
+ <% if (project.is_wiki_activated && project.my_permissions.indexOf("view_wiki_pages") != -1) { %>
@@ -143,12 +143,14 @@ ProjectMenuDirective = ($log, $compile, $auth, $rootscope, $tgAuth, $location) -
<% } %>
+ <% if (project.i_am_owner) { %>
Admin
+ <% } %>