| ... | @@ -12,7 +12,9 @@ |
... | @@ -12,7 +12,9 @@ |
|
|
- css_class += " no-description" if project.description.blank? && !show_last_commit_as_description
|
|
- css_class += " no-description" if project.description.blank? && !show_last_commit_as_description
|
|
|
- cache_key = project_list_cache_key(project, pipeline_status: pipeline_status)
|
|
- cache_key = project_list_cache_key(project, pipeline_status: pipeline_status)
|
|
|
- updated_tooltip = time_ago_with_tooltip(project.last_activity_date)
|
|
- updated_tooltip = time_ago_with_tooltip(project.last_activity_date)
|
|
|
|
- show_pipeline_status_icon = pipeline_status && can?(current_user, :read_cross_project) && project.pipeline_status.has_status? && can?(current_user, :read_build, project)
|
|
|
- css_controls_class = compact_mode ? [] : ["flex-lg-row", "justify-content-lg-between"]
|
|
- css_controls_class = compact_mode ? [] : ["flex-lg-row", "justify-content-lg-between"]
|
|
|
|
- css_controls_class << "with-pipeline-status" if show_pipeline_status_icon
|
|
|
- avatar_container_class = project.creator && use_creator_avatar ? '' : 'rect-avatar'
|
|
- avatar_container_class = project.creator && use_creator_avatar ? '' : 'rect-avatar'
|
|
|
|
|
|
|
|
%li.project-row.d-flex{ class: css_class }
|
|
%li.project-row.d-flex{ class: css_class }
|
| ... | @@ -60,6 +62,11 @@ |
... | @@ -60,6 +62,11 @@ |
|
|
|
|
|
|
|
.controls.d-flex.flex-sm-column.align-items-center.align-items-sm-end.flex-wrap.flex-shrink-0.text-secondary{ class: css_controls_class.join(" ") }
|
|
.controls.d-flex.flex-sm-column.align-items-center.align-items-sm-end.flex-wrap.flex-shrink-0.text-secondary{ class: css_controls_class.join(" ") }
|
|
|
.icon-container.d-flex.align-items-center
|
|
.icon-container.d-flex.align-items-center
|
|
|
|
- if show_pipeline_status_icon
|
|
|
|
- pipeline_path = pipelines_project_commit_path(project.pipeline_status.project, project.pipeline_status.sha, ref: project.pipeline_status.ref)
|
|
|
|
%span.icon-wrapper.pipeline-status
|
|
|
|
= render 'ci/status/icon', status: project.last_pipeline.detailed_status(current_user), tooltip_placement: 'top', path: pipeline_path
|
|
|
|
|
|
|
= render_if_exists 'shared/projects/archived', project: project
|
|
= render_if_exists 'shared/projects/archived', project: project
|
|
|
- if stars
|
|
- if stars
|
|
|
= link_to project_starrers_path(project),
|
|
= link_to project_starrers_path(project),
|
| ... | |
... | |
| ... | | ... | |