2013-01-10 19:17:57 +01:00
|
|
|
%h3.page_title
|
2013-03-07 09:08:43 +01:00
|
|
|
Projects (#{@projects.total_count})
|
2013-01-19 15:22:41 +01:00
|
|
|
%small with read-only access
|
2013-01-10 19:17:57 +01:00
|
|
|
%hr
|
|
|
|
|
2013-03-07 09:08:43 +01:00
|
|
|
.public-projects
|
|
|
|
%ul.unstyled
|
|
|
|
- @projects.each do |project|
|
|
|
|
%li.clearfix
|
|
|
|
%h5
|
|
|
|
%i.icon-share
|
|
|
|
= project.name_with_namespace
|
|
|
|
.pull-right
|
|
|
|
%pre.dark.tiny git clone #{project.http_url_to_repo}
|
|
|
|
%p.description
|
|
|
|
= project.description
|
|
|
|
- unless @projects.present?
|
|
|
|
%h3.nothing_here_message No public projects
|
2013-01-13 16:24:29 +01:00
|
|
|
|
2013-03-07 09:08:43 +01:00
|
|
|
= paginate @projects, theme: "admin"
|