summaryrefslogtreecommitdiff
path: root/app/views/layouts
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-19 19:48:48 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-19 19:48:48 +0300
commitb3ef63a0a547610ba8ac6435674eabc5a2130c3d (patch)
treeb90c2d38c8ea93941fd0067e89a0e03f60b00c9c /app/views/layouts
parentcf8b465cb96f5aa6e53fec60c0d6e62ad1ccbc5e (diff)
downloadgitlab-ce-b3ef63a0a547610ba8ac6435674eabc5a2130c3d.tar.gz
Migrate global project taks. Removed more teams related functionality
Diffstat (limited to 'app/views/layouts')
-rw-r--r--app/views/layouts/nav/_team.html.haml25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/views/layouts/nav/_team.html.haml b/app/views/layouts/nav/_team.html.haml
deleted file mode 100644
index 575c5b7e1f3..00000000000
--- a/app/views/layouts/nav/_team.html.haml
+++ /dev/null
@@ -1,25 +0,0 @@
-%ul
- = nav_link(path: 'teams#show', html_options: {class: 'home'}) do
- = link_to team_path(@team), title: "Home" do
- %i.icon-home
-
- = nav_link(path: 'teams#issues') do
- = link_to issues_team_path(@team) do
- Issues
- %span.count= Issue.opened.of_user_team(@team).count
-
- = nav_link(path: 'teams#merge_requests') do
- = link_to merge_requests_team_path(@team) do
- Merge Requests
- %span.count= MergeRequest.opened.of_user_team(@team).count
-
- = nav_link(controller: [:members]) do
- = link_to team_members_path(@team), class: "team-tab tab" do
- Members
- %span.count= @team.members.count
-
- - if can? current_user, :manage_user_team, @team
- = nav_link(path: 'teams#edit') do
- = link_to edit_team_path(@team), class: "stat-tab tab " do
- Settings
-