mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
12 lines
669 B
Plaintext
12 lines
669 B
Plaintext
.top-area
|
|
.nav-controls
|
|
= form_tag request.original_url, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
|
|
= search_field_tag :filter_projects, params[:filter_projects], placeholder: 'Filter by name...', class: 'input-short project-filter-form-field form-control projects-list-filter', spellcheck: false, id: 'project-filter-form-field'
|
|
- if current_user && current_user.can_create_project?
|
|
= link_to new_project_path, class: 'btn btn-new' do
|
|
= icon('plus')
|
|
New Project
|
|
|
|
.projects-list-holder
|
|
= render 'shared/projects/list', projects: @projects, projects_limit: 20, stars: false, skip_namespace: true
|