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
path: root/app/views
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-15 01:05:41 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-15 01:05:41 +0400
commit34a46fa6f0a155147e58dc0e7c45260b796c1629 (patch)
tree67c0b16b4b5b0523a83b27825cf67117bd448799 /app/views
parent6a2cd2e9f5b93abbdb12c1a2401ff65843912605 (diff)
clean controllers
Diffstat (limited to 'app/views')
-rw-r--r--app/views/notes/_notes.html.haml1
-rw-r--r--app/views/projects/_list.html.haml3
-rw-r--r--app/views/projects/_projects_top_menu.html.haml3
3 files changed, 3 insertions, 4 deletions
diff --git a/app/views/notes/_notes.html.haml b/app/views/notes/_notes.html.haml
index 457bb8db763..9d1d4b941c8 100644
--- a/app/views/notes/_notes.html.haml
+++ b/app/views/notes/_notes.html.haml
@@ -1,5 +1,6 @@
%ul#notes-list
- @notes.each do |note|
+ - next unless note.author
= render :partial => "notes/show", :locals => {:note => note}
%br
diff --git a/app/views/projects/_list.html.haml b/app/views/projects/_list.html.haml
index 82e1948c757..aec61ffbbe1 100644
--- a/app/views/projects/_list.html.haml
+++ b/app/views/projects/_list.html.haml
@@ -1,6 +1,3 @@
--#- if current_user.can_create_project?
- = link_to 'New Project', new_project_path, :class => "lbutton vm"
-
%table.round-borders#projects-list
%tr
%th Name
diff --git a/app/views/projects/_projects_top_menu.html.haml b/app/views/projects/_projects_top_menu.html.haml
index be04c57e842..f80f28a8bbb 100644
--- a/app/views/projects/_projects_top_menu.html.haml
+++ b/app/views/projects/_projects_top_menu.html.haml
@@ -1,6 +1,7 @@
%div.top_project_menu
%span= link_to 'All', projects_path, :class => current_page?(projects_path) ? "current" : nil
- %span= link_to "New Project", new_project_path, :class => current_page?(:controller => "projects", :action => "new") ? "current" : nil
+ - if current_user.can_create_project?
+ %span= link_to "New Project", new_project_path, :class => current_page?(:controller => "projects", :action => "new") ? "current" : nil
%span.right
= link_to_function(image_tag("list_view_icon.jpg"), "switchProjectView()", :style => "border:none;box-shadow:none;")