gitlab-org--gitlab-foss/app/views/shared/projects/_project.html.haml

54 lines
2.2 KiB
Text
Raw Normal View History

- avatar = true unless local_assigns[:avatar] == false
- stars = true unless local_assigns[:stars] == false
2016-01-11 19:44:05 -05:00
- forks = false unless local_assigns[:forks] == true
- ci = false unless local_assigns[:ci] == true
- skip_namespace = false unless local_assigns[:skip_namespace] == true
- css_class = '' unless local_assigns[:css_class]
2016-02-19 02:09:20 -05:00
- show_last_commit_as_description = false unless local_assigns[:show_last_commit_as_description] == true && project.commit
2016-01-12 20:07:59 -05:00
- css_class += " no-description" if project.description.blank? && !show_last_commit_as_description
2017-03-16 05:53:48 -04:00
- cache_key = project_list_cache_key(project)
%li.project-row{ class: css_class }
= cache(cache_key) do
.controls
2016-08-12 16:55:53 -04:00
- if project.archived
%span.label.label-warning archived
- if project.pipeline_status.has_status?
%span
= render_project_pipeline_status(project.pipeline_status)
2016-01-11 19:44:05 -05:00
- if forks
%span
2016-01-18 17:27:50 -05:00
= icon('code-fork')
= number_with_delimiter(project.forks_count)
- if stars
%span
2016-01-18 17:27:50 -05:00
= icon('star')
= number_with_delimiter(project.star_count)
%span.visibility-icon.has-tooltip{ data: { container: 'body', placement: 'left' }, title: visibility_icon_description(project) }
2016-07-25 16:15:44 -04:00
= visibility_level_icon(project.visibility_level, fw: true)
.title
= link_to project_path(project), class: dom_class(project) do
- if avatar
.dash-project-avatar
.avatar-container.s40
- if use_creator_avatar
= image_tag avatar_icon(project.creator.email, 40), class: "avatar s40", alt:''
- else
= project_icon(project, alt: '', class: 'avatar project-avatar s40')
%span.project-full-name
%span.namespace-name
- if project.namespace && !skip_namespace
= project.namespace.human_name
\/
%span.project-name.filter-title
= project.name
2016-01-12 20:07:59 -05:00
- if show_last_commit_as_description
.description
2016-01-12 20:07:59 -05:00
= link_to_gfm project.commit.title, namespace_project_commit_path(project.namespace, project, project.commit),
class: "commit-row-message"
- elsif project.description.present?
.description
= markdown_field(project, :description)