summaryrefslogtreecommitdiff
path: root/app/views/wikis/_nav.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/wikis/_nav.html.haml')
-rw-r--r--app/views/wikis/_nav.html.haml14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/views/wikis/_nav.html.haml b/app/views/wikis/_nav.html.haml
new file mode 100644
index 00000000000..36ab1053c17
--- /dev/null
+++ b/app/views/wikis/_nav.html.haml
@@ -0,0 +1,14 @@
+%ul.nav.nav-tabs
+ - if @project.wiki_enabled
+ = nav_link(controller: 'wikis') do
+ = link_to 'Wiki', project_wiki_path(@project, :index)
+
+ - if @project.wall_enabled
+ = nav_link(path: 'projects#wall') do
+ = link_to 'Wall', wall_project_path(@project)
+
+ = nav_link(path: 'projects#files') do
+ = link_to 'Attachments', files_project_path(@project), class: "files-tab tab"
+
+ = nav_link(controller: :snippets) do
+ = link_to 'Snippets', project_snippets_path(@project), class: "snippets-tab tab"