summaryrefslogtreecommitdiff
path: root/app/views/groups/_projects.html.haml
blob: 9c16ab7e30f74a8c89c2e8dca3ae29a90c523c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
.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