Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/layouts/user.html.haml')
-rw-r--r--app/views/layouts/user.html.haml31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/views/layouts/user.html.haml b/app/views/layouts/user.html.haml
deleted file mode 100644
index 5a936450800..00000000000
--- a/app/views/layouts/user.html.haml
+++ /dev/null
@@ -1,31 +0,0 @@
-!!!
-%html
- %head
- %title
- GitLab #{" - #{current_user.name}"}
- = stylesheet_link_tag "application"
- = javascript_include_tag "application"
- = csrf_meta_tags
- = javascript_tag do
- REQ_URI = "#{request.env["REQUEST_URI"]}";
- REQ_REFFER = "#{request.env["HTTP_REFERER"]}";
- %body{ :class => body_class('project-page'), :id => yield(:boyd_id)}
- = render :partial => "layouts/flash"
- #container
- = render :partial => "layouts/head_panel"
- .project-container
- .project-sidebar
- .fixed
- %aside
- = link_to issues_path, :class => current_page?(issues_path) ? "current" : nil do
- Issues
- - unless current_user.assigned_issues.empty?
- %span{ :class => "number" }= current_user.assigned_issues.count
- = link_to merge_requests_path, :class => current_page?(merge_requests_path) ? "current" : nil do
- Merge Requests
- - unless current_user.assigned_merge_requests.empty?
- %span{ :class => "number" }= current_user.assigned_merge_requests.count
-
- .project-content
- = yield
-