diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2023-05-11 15:08:39 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2023-05-11 15:08:39 +0000 |
commit | 4564f677f8d71e814e89618e81709c86cf50e3d2 (patch) | |
tree | 9ba8fffbd8b3ec3d40dc12bfc4132d842f789cfc /app/views/projects | |
parent | 0b54f87a31c23544ca5917bf772ce9c64a61562c (diff) | |
download | gitlab-ce-4564f677f8d71e814e89618e81709c86cf50e3d2.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/views/projects')
15 files changed, 32 insertions, 32 deletions
diff --git a/app/views/projects/branches/_panel.html.haml b/app/views/projects/branches/_panel.html.haml index a2c6c93278b..a632e29d34f 100644 --- a/app/views/projects/branches/_panel.html.haml +++ b/app/views/projects/branches/_panel.html.haml @@ -8,13 +8,13 @@ - return unless branches.any? = render Pajamas::CardComponent.new(card_options: {class: 'gl-mt-5 gl-bg-gray-10'}, header_options: {class: 'gl-px-5 gl-py-4 gl-bg-white'}, body_options: {class: 'gl-px-3 gl-py-0'}, footer_options: {class: 'gl-bg-white'}) do |c| - - c.header do + - c.with_header do %h3.card-title.h5.gl-line-height-24.gl-m-0 = panel_title - - c.body do + - c.with_body do %ul.content-list.branches-list.all-branches{ data: { qa_selector: 'all_branches_container' } } - branches.first(overview_max_branches).each do |branch| = render "projects/branches/branch", branch: branch, merged: project.repository.merged_to_root_ref?(branch), commit_status: @branch_pipeline_statuses[branch.name], show_commit_status: @branch_pipeline_statuses.any? - if branches.size > overview_max_branches - - c.footer do + - c.with_footer do = link_to show_more_text, project_branches_filtered_path(project, state: state), id: "state-#{state}", data: { state: state } diff --git a/app/views/projects/commits/_commit_list.html.haml b/app/views/projects/commits/_commit_list.html.haml index 23b25b5dcbd..22f4594c1d5 100644 --- a/app/views/projects/commits/_commit_list.html.haml +++ b/app/views/projects/commits/_commit_list.html.haml @@ -3,9 +3,9 @@ - commits = Commit.decorate(commits, @project) = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5'}, body_options: { class: 'gl-py-0'}) do |c| - - c.header do + - c.with_header do Commits (#{@total_commit_count}) - - c.body do + - c.with_body do - if hidden > 0 %ul.content-list - commits.each do |commit| diff --git a/app/views/projects/compare/show.html.haml b/app/views/projects/compare/show.html.haml index bc378182057..9185afc0771 100644 --- a/app/views/projects/compare/show.html.haml +++ b/app/views/projects/compare/show.html.haml @@ -18,7 +18,7 @@ paginate_diffs_per_page: Projects::CompareController::COMMIT_DIFFS_PER_PAGE - else = render Pajamas::CardComponent.new(card_options: { class: "gl-bg-gray-50 gl-mb-5 gl-border-none gl-text-center" }) do |c| - - c.body do + - c.with_body do %h4 = s_("CompareBranches|There isn't anything to compare.") %p.gl-mb-4.gl-line-height-24 diff --git a/app/views/projects/issues/_related_branches.html.haml b/app/views/projects/issues/_related_branches.html.haml index d26b0f96992..3d6a266dc4d 100644 --- a/app/views/projects/issues/_related_branches.html.haml +++ b/app/views/projects/issues/_related_branches.html.haml @@ -1,7 +1,7 @@ - if @related_branches.any? - if @related_branches.any? = render Pajamas::CardComponent.new(card_options: { class: 'gl-bg-gray-10 gl-mt-5 gl-mb-0' }, header_options: { class: 'gl-bg-white gl-pl-5 gl-pr-4 gl-py-4' } , body_options: { class: 'gl-py-3 gl-px-4' }) do |c| - - c.header do + - c.with_header do %h3.card-title.h5.gl-my-0.gl-display-flex.gl-align-items-center.gl-flex-grow-1.gl-relative.gl-line-height-24 = link_to "", "#related-branches", class: "gl-link anchor position-absolute gl-text-decoration-none", "aria-hidden": true = _('Related branches') @@ -9,7 +9,7 @@ .gl-display-inline-flex.gl-align-items-center = sprite_icon('branch', css_class: "gl-mr-2 gl-text-gray-500 gl-icon") = @related_branches.size - - c.body do + - c.with_body do %ul.related-merge-requests.content-list.gl-p-3! - @related_branches.each do |branch| %li.list-item{ class: "gl-py-0! gl-border-0!" } diff --git a/app/views/projects/mirrors/_mirror_repos_list.html.haml b/app/views/projects/mirrors/_mirror_repos_list.html.haml index b06aca063fd..185d86245c5 100644 --- a/app/views/projects/mirrors/_mirror_repos_list.html.haml +++ b/app/views/projects/mirrors/_mirror_repos_list.html.haml @@ -4,10 +4,10 @@ .table-responsive - if !@project.mirror? && @project.remote_mirrors.count == 0 = render Pajamas::CardComponent.new(card_options: { class: 'gl-mt-5' }) do |c| - - c.header do + - c.with_header do %strong = _('Mirrored repositories') + ' (0)' - - c.body do + - c.with_body do = _('There are currently no mirrored repositories.') - else %table.table.gl-table.gl-mt-5 diff --git a/app/views/projects/pages/_access.html.haml b/app/views/projects/pages/_access.html.haml index 33e0e45350a..50e48187be3 100644 --- a/app/views/projects/pages/_access.html.haml +++ b/app/views/projects/pages/_access.html.haml @@ -2,9 +2,9 @@ - pages_url = @project.pages_url(with_unique_domain: true) = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5', data: { qa_selector: 'access_page_container' } }, footer_options: { class: 'gl-alert-warning' }) do |c| - - c.header do + - c.with_header do = s_('GitLabPages|Access pages') - - c.body do + - c.with_body do %p = external_link(pages_url, pages_url) @@ -12,7 +12,7 @@ %p = external_link(domain.url, domain.url) - unless @project.public_pages? - - c.footer do + - c.with_footer do - help_page = help_page_path('user/project/pages/pages_access_control') - link_start = '<a href="%{url}" target="_blank" class="gl-alert-link" rel="noopener noreferrer">'.html_safe % { url: help_page } - link_end = '</a>'.html_safe diff --git a/app/views/projects/pages/_list.html.haml b/app/views/projects/pages/_list.html.haml index 4cf9efcf519..57371aa49f6 100644 --- a/app/views/projects/pages/_list.html.haml +++ b/app/views/projects/pages/_list.html.haml @@ -3,12 +3,12 @@ - if can?(current_user, :update_pages, @project) = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5'}, header_options: { class: 'gl-display-flex gl-align-items-center gl-justify-content-space-between' }) do |c| - - c.header do + - c.with_header do Domains (#{@domains.size}) - if can_add_new_domain = render Pajamas::ButtonComponent.new(variant: :confirm, href: new_project_pages_domain_path(@project)) do = s_('GitLabPages|New Domain') - - c.body do + - c.with_body do - if @domains.any? %ul.list-group.list-group-flush - @domains.each do |domain| diff --git a/app/views/projects/pages/_no_domains.html.haml b/app/views/projects/pages/_no_domains.html.haml index 5f377743439..97c3ad11f1a 100644 --- a/app/views/projects/pages/_no_domains.html.haml +++ b/app/views/projects/pages/_no_domains.html.haml @@ -2,10 +2,10 @@ - if can?(current_user, :update_pages, @project) = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5'}, body_options: { class: 'gl-text-center nothing-here-block' }) do |c| - - c.header do + - c.with_header do = s_('GitLabPages|Domains') - if can_add_new_domain = render Pajamas::ButtonComponent.new(variant: :confirm, href: new_project_pages_domain_path(@project)) do = s_('GitLabPages|New Domain') - - c.body do + - c.with_body do = s_("GitLabPages|Support for domains and certificates is disabled. Ask your system's administrator to enable it.") diff --git a/app/views/projects/pages/_use.html.haml b/app/views/projects/pages/_use.html.haml index dccf61c6ec5..4c39c1be060 100644 --- a/app/views/projects/pages/_use.html.haml +++ b/app/views/projects/pages/_use.html.haml @@ -1,8 +1,8 @@ - unless @project.pages_deployed? = render Pajamas::CardComponent.new(card_options: { class: 'gl-border-blue-500' }, header_options: { class: 'gl-bg-blue-500 gl-text-white' }) do |c| - - c.header do + - c.with_header do = s_('GitLabPages|Configure pages') - - c.body do + - c.with_body do - docs_link_start = "<a href='#{help_page_path('user/project/pages/index')}' target='_blank' rel='noopener noreferrer' data-track-action='click_link' data-track-label='pages_docs_link'>".html_safe - samples_link_start = "<a href='https://gitlab.com/pages' target='_blank' rel='noopener noreferrer' data-track-action='click_link' data-track-label='pages_samples_link'>".html_safe - link_end = '</a>'.html_safe diff --git a/app/views/projects/pages_domains/_certificate.html.haml b/app/views/projects/pages_domains/_certificate.html.haml index f3bf07bb487..f80fd495695 100644 --- a/app/views/projects/pages_domains/_certificate.html.haml +++ b/app/views/projects/pages_domains/_certificate.html.haml @@ -31,9 +31,9 @@ .row .col-sm-10.offset-sm-2 = render Pajamas::CardComponent.new(body_options: { class: 'gl-display-flex gl-align-items-center gl-justify-content-space-between gl-p-5' }) do |c| - - c.header do + - c.with_header do = _('Certificate') - - c.body do + - c.with_body do %span = domain_presenter.pages_domain.subject || _('missing') = link_to _('Remove'), diff --git a/app/views/projects/protected_tags/shared/_create_protected_tag.html.haml b/app/views/projects/protected_tags/shared/_create_protected_tag.html.haml index 1db1da5e428..d67c3dc19d7 100644 --- a/app/views/projects/protected_tags/shared/_create_protected_tag.html.haml +++ b/app/views/projects/protected_tags/shared/_create_protected_tag.html.haml @@ -1,9 +1,9 @@ = gitlab_ui_form_for [@project, @protected_tag], html: { class: 'new-protected-tag js-new-protected-tag' } do |f| %input{ type: 'hidden', name: 'update_section', value: 'js-protected-tags-settings' } = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5' }) do |c| - - c.header do + - c.with_header do = _('Protect a tag') - - c.body do + - c.with_body do = form_errors(@protected_tag) .form-group.row = f.label :name, _('Tag:'), class: 'col-md-2 text-left text-md-right' @@ -19,5 +19,5 @@ .create_access_levels-container = yield :create_access_levels - - c.footer do + - c.with_footer do = f.submit _('Protect'), pajamas_button: true, disabled: true, data: { qa_selector: 'protect_tag_button' } diff --git a/app/views/projects/settings/ci_cd/_autodevops_form.html.haml b/app/views/projects/settings/ci_cd/_autodevops_form.html.haml index 5afbace3f26..46cfcf20535 100644 --- a/app/views/projects/settings/ci_cd/_autodevops_form.html.haml +++ b/app/views/projects/settings/ci_cd/_autodevops_form.html.haml @@ -21,14 +21,14 @@ .form-group = f.fields_for :auto_devops_attributes, @auto_devops do |form| = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-3' }, footer_options: { class: auto_devops_enabled || 'hidden' }) do |c| - - c.body do + - c.with_body do - autodevops_help_link = link_to _('Learn more.'), help_page_path('topics/autodevops/index.md'), target: '_blank', rel: 'noopener noreferrer' - auto_devops_badge = auto_devops_enabled ? (gl_badge_tag badge_for_auto_devops_scope(@project), { variant: :info }, { class: 'js-instance-default-badge gl-ml-3 gl-mt-n1'}) : '' = form.gitlab_ui_checkbox_component :enabled, (s_('CICD|Default to Auto DevOps pipeline') + auto_devops_badge).html_safe, checkbox_options: { class: 'js-toggle-extra-settings', checked: auto_devops_enabled, data: { qa_selector: 'enable_autodevops_checkbox' } }, help_text: (s_('CICD|The Auto DevOps pipeline runs if no alternative CI configuration file is found.') + ' ' + autodevops_help_link).html_safe - - c.footer do + - c.with_footer do - if @project.all_clusters.empty? %p.settings-message.text-center = s_('CICD|Add a %{kubernetes_cluster_link_start}Kubernetes cluster integration%{link_end} with a domain, or create an AUTO_DEVOPS_PLATFORM_TARGET CI variable.').html_safe % { kubernetes_cluster_link_start: kubernetes_cluster_link_start, link_end: link_end } diff --git a/app/views/projects/settings/ci_cd/_badge.html.haml b/app/views/projects/settings/ci_cd/_badge.html.haml index 76a7b42e0e5..e9766b36c79 100644 --- a/app/views/projects/settings/ci_cd/_badge.html.haml +++ b/app/views/projects/settings/ci_cd/_badge.html.haml @@ -3,14 +3,14 @@ %h4 = badge.title.capitalize = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5' }, header_options: { class: 'gl-display-flex gl-align-items-center' }) do |c| - - c.header do + - c.with_header do .gl-flex-grow-1 %b = badge.title.capitalize · = badge.to_html .js-ref-switcher-badge{ id: "js-project-ci-cd-ref-switcher-#{badge.title.parameterize(separator: '-') }", data: { project_id: @project.id, ref: @ref } } - - c.body do + - c.with_body do .row .col-md-2.gl-text-center Markdown diff --git a/app/views/projects/starrers/_starrer.html.haml b/app/views/projects/starrers/_starrer.html.haml index d9fda2a6e36..16ae003255c 100644 --- a/app/views/projects/starrers/_starrer.html.haml +++ b/app/views/projects/starrers/_starrer.html.haml @@ -2,7 +2,7 @@ .col-lg-3.col-md-4.col-sm-12 = render Pajamas::CardComponent.new(body_options: { class: 'gl-display-flex' }) do |c| - - c.body do + - c.with_body do = render Pajamas::AvatarComponent.new(starrer.user, size: 48, alt: "", class: 'gl-mr-3') .user-info diff --git a/app/views/projects/triggers/_index.html.haml b/app/views/projects/triggers/_index.html.haml index de127d15351..b68aad24b50 100644 --- a/app/views/projects/triggers/_index.html.haml +++ b/app/views/projects/triggers/_index.html.haml @@ -1,13 +1,13 @@ .row.gl-mt-3.gl-mb-3 .col-lg-12 = render Pajamas::CardComponent.new do |c| - - c.header do + - c.with_header do = _("Manage your project's triggers") - - c.body do + - c.with_body do = render 'projects/triggers/form', btn_text: _('Add trigger') .gl-mb-5 #js-ci-pipeline-triggers-list.triggers-list{ data: { triggers: @triggers_json } } - - c.footer do + - c.with_footer do %p = _("These examples show how to trigger this project's pipeline for a branch or tag.") |