debian-mirror-gitlab/app/views/projects/_home_panel.html.haml

89 lines
4.4 KiB
Plaintext
Raw Normal View History

2014-09-02 18:07:02 +05:30
- empty_repo = @project.empty_repo?
2019-02-15 15:39:39 +05:30
- show_auto_devops_callout = show_auto_devops_callout?(@project)
2019-07-07 11:18:12 +05:30
- max_project_topic_length = 15
2019-10-12 21:52:04 +05:30
- emails_disabled = @project.emails_disabled?
2020-07-28 23:09:34 +05:30
.project-home-panel.js-show-on-project-root{ class: [("empty-project" if empty_repo)] }
2020-06-23 00:09:42 +05:30
.row.gl-mb-3
2019-03-02 22:35:43 +05:30
.home-panel-title-row.col-md-12.col-lg-6.d-flex
2020-07-28 23:09:34 +05:30
.avatar-container.rect-avatar.s64.home-panel-avatar.gl-mr-3.float-none
2019-02-15 15:39:39 +05:30
= project_icon(@project, alt: @project.name, class: 'avatar avatar-tile s64', width: 64, height: 64)
.d-flex.flex-column.flex-wrap.align-items-baseline
.d-inline-flex.align-items-baseline
2020-07-28 23:09:34 +05:30
%h1.home-panel-title.gl-mt-3.gl-mb-2{ data: { qa_selector: 'project_name_content' } }
2019-02-15 15:39:39 +05:30
= @project.name
2020-06-23 00:09:42 +05:30
%span.visibility-icon.text-secondary.gl-ml-2.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@project) }
2020-10-24 23:57:45 +05:30
= visibility_level_icon(@project.visibility_level, options: { class: 'icon' })
2020-04-22 19:07:51 +05:30
= render_if_exists 'compliance_management/compliance_framework/compliance_framework_badge', project: @project
2019-07-07 11:18:12 +05:30
.home-panel-metadata.d-flex.flex-wrap.text-secondary
2019-02-15 15:39:39 +05:30
- if can?(current_user, :read_project, @project)
%span.text-secondary
= s_('ProjectPage|Project ID: %{project_id}') % { project_id: @project.id }
- if current_user
2020-06-23 00:09:42 +05:30
%span.access-request-links.gl-ml-3
2019-02-15 15:39:39 +05:30
= render 'shared/members/access_request_links', source: @project
- if @project.tag_list.present?
2019-07-07 11:18:12 +05:30
%span.home-panel-topic-list.mt-2.w-100.d-inline-flex
2020-10-24 23:57:45 +05:30
= sprite_icon('tag', css_class: 'icon gl-mr-2')
2019-03-02 22:35:43 +05:30
- @project.topics_to_show.each do |topic|
2020-07-28 23:09:34 +05:30
- project_topics_classes = "badge badge-pill badge-secondary gl-mr-2"
2019-07-07 11:18:12 +05:30
- explore_project_topic_path = explore_projects_path(tag: topic)
- if topic.length > max_project_topic_length
%a{ class: "#{ project_topics_classes } str-truncated-30 has-tooltip", data: { container: "body" }, title: topic, href: explore_project_topic_path }
= topic.titleize
- else
%a{ class: project_topics_classes, href: explore_project_topic_path }
= topic.titleize
2019-03-02 22:35:43 +05:30
- if @project.has_extra_topics?
2019-07-07 11:18:12 +05:30
.text-nowrap.has-tooltip{ data: { container: 'body' }, title: @project.has_extra_topics? ? @project.topics_not_shown.join(', ') : nil }
2019-03-02 22:35:43 +05:30
= _("+ %{count} more") % { count: @project.count_of_extra_topics_not_shown }
2019-02-15 15:39:39 +05:30
.project-repo-buttons.col-md-12.col-lg-6.d-inline-flex.flex-wrap.justify-content-lg-end
- if current_user
.d-inline-flex
2019-10-12 21:52:04 +05:30
= render 'shared/notifications/new_button', notification_setting: @notification_setting, btn_class: 'btn-xs', emails_disabled: emails_disabled
2019-01-03 12:48:30 +05:30
2018-11-20 20:47:30 +05:30
.count-buttons.d-inline-flex
2016-08-24 12:49:21 +05:30
= render 'projects/buttons/star'
= render 'projects/buttons/fork'
2019-02-15 15:39:39 +05:30
- if can?(current_user, :download_code, @project)
%nav.project-stats
2019-03-02 22:35:43 +05:30
.nav-links.quick-links
2019-07-07 11:18:12 +05:30
- if @project.empty_repo?
= render 'stat_anchor_list', anchors: @project.empty_repo_statistics_anchors
- else
= render 'stat_anchor_list', anchors: @project.statistics_anchors(show_auto_devops_callout: show_auto_devops_callout)
2018-12-23 12:14:25 +05:30
2019-03-02 22:35:43 +05:30
.home-panel-home-desc.mt-1
2019-02-15 15:39:39 +05:30
- if @project.description.present?
2019-09-04 21:01:54 +05:30
.home-panel-description.text-break
2019-03-02 22:35:43 +05:30
.home-panel-description-markdown.read-more-container
2019-02-15 15:39:39 +05:30
= markdown_field(@project, :description)
%button.btn.btn-blank.btn-link.js-read-more-trigger.d-lg-none{ type: "button" }
= _("Read more")
- if @project.forked?
%p
2019-12-04 20:38:33 +05:30
- source = visible_fork_source(@project)
- if source
2019-02-15 15:39:39 +05:30
#{ s_('ForkedFromProjectPath|Forked from') }
2020-03-13 15:44:24 +05:30
= link_to source.full_name, project_path(source), data: { qa_selector: 'forked_from_link' }
2019-02-15 15:39:39 +05:30
- else
2019-12-04 20:38:33 +05:30
= s_('ForkedFromProjectPath|Forked from an inaccessible project')
2017-08-17 22:00:37 +05:30
2019-07-31 22:56:46 +05:30
= render_if_exists "projects/home_mirror"
2019-02-15 15:39:39 +05:30
- if @project.badges.present?
.project-badges.mb-2
- @project.badges.each do |badge|
2020-06-23 00:09:42 +05:30
%a.gl-mr-3{ href: badge.rendered_link_url(@project),
2019-02-15 15:39:39 +05:30
target: '_blank',
rel: 'noopener noreferrer' }>
%img.project-badge{ src: badge.rendered_image_url(@project),
'aria-hidden': true,
alt: 'Project badge' }>