debian-mirror-gitlab/app/views/shared/projects/_project.html.haml

49 lines
2 KiB
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- avatar = true unless local_assigns[:avatar] == false
- stars = true unless local_assigns[:stars] == false
2016-04-02 18:10:28 +05:30
- forks = false unless local_assigns[:forks] == true
2015-10-24 18:46:33 +05:30
- ci = false unless local_assigns[:ci] == true
- skip_namespace = false unless local_assigns[:skip_namespace] == true
2015-09-25 12:07:36 +05:30
- css_class = '' unless local_assigns[:css_class]
2016-04-02 18:10:28 +05:30
- show_last_commit_as_description = false unless local_assigns[:show_last_commit_as_description] == true && project.commit
- css_class += " no-description" if project.description.blank? && !show_last_commit_as_description
- ci_commit = project.ci_commit(project.commit.sha) if ci && !project.empty_repo? && project.commit
- cache_key = [project.namespace, project, controller.controller_name, controller.action_name, current_application_settings, 'v2.2']
- cache_key.push(ci_commit.status) if ci_commit
2015-09-25 12:07:36 +05:30
%li.project-row{ class: css_class }
= cache(cache_key) do
2015-09-25 12:07:36 +05:30
= link_to project_path(project), class: dom_class(project) do
- if avatar
.dash-project-avatar
2016-04-02 18:10:28 +05:30
- 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')
2015-09-25 12:07:36 +05:30
%span.project-full-name
%span.namespace-name
2015-10-24 18:46:33 +05:30
- if project.namespace && !skip_namespace
2015-09-25 12:07:36 +05:30
= project.namespace.human_name
\/
%span.project-name.filter-title
= project.name
2015-10-24 18:46:33 +05:30
.project-controls
- if ci_commit
2016-04-02 18:10:28 +05:30
%span
= render_ci_status(ci_commit)
- if forks
%span
= icon('code-fork')
= project.forks_count
2015-09-25 12:07:36 +05:30
- if stars
2015-10-24 18:46:33 +05:30
%span
2016-04-02 18:10:28 +05:30
= icon('star')
2015-09-25 12:07:36 +05:30
= project.star_count
2016-04-02 18:10:28 +05:30
- if show_last_commit_as_description
.project-description
= link_to_gfm project.commit.title, namespace_project_commit_path(project.namespace, project, project.commit),
class: "commit-row-message"
- elsif project.description.present?
2015-09-25 12:07:36 +05:30
.project-description
= markdown(project.description, pipeline: :description)