show project description on public area
This commit is contained in:
parent
7c408960ce
commit
e90277f9b5
3 changed files with 29 additions and 13 deletions
|
@ -2,6 +2,7 @@
|
||||||
.cgray { color:gray }
|
.cgray { color:gray }
|
||||||
.cred { color:#D12F19 }
|
.cred { color:#D12F19 }
|
||||||
.cgreen { color:#4a2 }
|
.cgreen { color:#4a2 }
|
||||||
|
.cblue { color:#29A }
|
||||||
.cblack { color:#111 }
|
.cblack { color:#111 }
|
||||||
.cdark { color:#444 }
|
.cdark { color:#444 }
|
||||||
.cwhite { color:#fff!important }
|
.cwhite { color:#fff!important }
|
||||||
|
|
|
@ -120,3 +120,16 @@ ul.nav.nav-projects-tabs {
|
||||||
.team_member_row form {
|
.team_member_row form {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.public-projects {
|
||||||
|
li {
|
||||||
|
margin-top: 8px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
|
||||||
|
.description {
|
||||||
|
margin-left: 22px;
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
%h3.page_title
|
%h3.page_title
|
||||||
Projects
|
Projects (#{@projects.total_count})
|
||||||
%small with read-only access
|
%small with read-only access
|
||||||
%hr
|
%hr
|
||||||
|
|
||||||
|
.public-projects
|
||||||
%ul.unstyled
|
%ul.unstyled
|
||||||
- @projects.each do |project|
|
- @projects.each do |project|
|
||||||
%li.clearfix
|
%li.clearfix
|
||||||
|
@ -11,7 +12,8 @@
|
||||||
= project.name_with_namespace
|
= project.name_with_namespace
|
||||||
.pull-right
|
.pull-right
|
||||||
%pre.dark.tiny git clone #{project.http_url_to_repo}
|
%pre.dark.tiny git clone #{project.http_url_to_repo}
|
||||||
|
%p.description
|
||||||
|
= project.description
|
||||||
- unless @projects.present?
|
- unless @projects.present?
|
||||||
%h3.nothing_here_message No public projects
|
%h3.nothing_here_message No public projects
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue