summaryrefslogtreecommitdiff
path: root/app/views/public/projects/index.html.haml
blob: 4bc67d8c6ae84f9798c9bb28cb8afd31863fed9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
.row
  .span6
    %h3.page-title
      Projects (#{@projects.total_count})
      %small with read-only access
  .span6
    .pull-right
      = form_tag public_projects_path, method: :get, class: 'form-inline' do |f|
        .search-holder
          .input
            = search_field_tag :search, params[:search], placeholder: "gitlab-ci", class: "span3 search-text-input", id: "projects_search"
            = submit_tag 'Search', class: "btn btn-primary wide"

%hr

.public-projects
  %ul.unstyled
    - @projects.each do |project|
      %li.clearfix
        %div
          %i.icon-share
          - if current_user
            = link_to_project project
          - else
            = project.name_with_namespace
          .pull-right
            %pre.dark.tiny git clone #{project.http_url_to_repo}
        %div.description
          = project.description
    - unless @projects.present?
      %h3.nothing_here_message No public projects

  = paginate @projects, theme: "gitlab"