07101cfab6
+ and Titleize New Project button on dashboard Hello there. Its my first merge request in open source world. So please be tolerant to me if i do something wrong. I try to fix https://gitlab.com/gitlab-org/gitlab-ce/issues/2906 See merge request !1564
11 lines
562 B
Text
11 lines
562 B
Text
.panel.panel-default.projects-list-holder
|
|
.panel-heading.clearfix
|
|
.input-group
|
|
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'projects-list-filter form-control', spellcheck: false
|
|
- if can? current_user, :create_projects, @group
|
|
%span.input-group-btn
|
|
= link_to new_project_path(namespace_id: @group.id), class: 'btn btn-green' do
|
|
%i.fa.fa-plus
|
|
New Project
|
|
|
|
= render 'shared/projects/list', projects: @projects, projects_limit: 20, stars: false, skip_namespace: true
|