debian-mirror-gitlab/app/views/projects/settings/_archive.html.haml

21 lines
2 KiB
Text
Raw Normal View History

2020-01-01 13:55:28 +05:30
- return unless can?(current_user, :archive_project, @project)
2020-10-24 23:57:45 +05:30
.sub-section{ data: { qa_selector: 'archive_project_content' } }
2020-01-01 13:55:28 +05:30
%h4.warning-title
- if @project.archived?
= _('Unarchive project')
- else
= _('Archive project')
- if @project.archived?
2021-03-11 19:13:27 +05:30
- link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_page_path('user/project/settings/index', anchor: 'unarchiving-a-project') }
%p= _("Unarchiving the project will restore its members' ability to make changes to it. The repository can be committed to, and issues, comments, and other entities can be created. %{strong_start}Once active, this project shows up in the search and on the dashboard.%{strong_end} %{link_start}Learn more.%{link_end}").html_safe % { strong_start: '<strong>'.html_safe, strong_end: '</strong>'.html_safe, link_start: link_start, link_end: '</a>'.html_safe }
2020-01-01 13:55:28 +05:30
= link_to _('Unarchive project'), unarchive_project_path(@project),
data: { confirm: _("Are you sure that you want to unarchive this project?"), qa_selector: 'unarchive_project_link' },
2021-04-29 21:17:54 +05:30
method: :post, class: "gl-button btn btn-confirm"
2020-01-01 13:55:28 +05:30
- else
2021-03-11 19:13:27 +05:30
- link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_page_path('user/project/settings/index', anchor: 'archiving-a-project') }
2021-06-08 01:23:25 +05:30
%p= _("Archiving the project will make it entirely read-only. It is hidden from the dashboard and doesn't show up in searches. %{strong_start}The repository cannot be committed to, and no issues, comments, or other entities can be created.%{strong_end} %{link_start}Learn more.%{link_end}").html_safe % { strong_start: '<strong>'.html_safe, strong_end: '</strong>'.html_safe, link_start: link_start, link_end: '</a>'.html_safe }
2021-01-03 14:25:43 +05:30
= link_to _('Archive project'), archive_project_path(@project),
data: { confirm: _("Are you sure that you want to archive this project?"), qa_selector: 'archive_project_link' },
2021-03-11 19:13:27 +05:30
method: :post, class: "gl-button btn btn-warning"