Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_deletion_guidance.html.haml « users « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0024801dbf694c1239f6338a65c2fabd7786f813 (plain)
1
2
3
4
5
6
7
8
9
10
11
- user = local_assigns.fetch(:user)

%ul
  %li
    %p
      - link_start = '<a href="%{url}">'.html_safe % { url: help_page_path("user/profile/account/delete_account", anchor: "associated-records") }
      = _('Certain user content will be moved to a system-wide "Ghost User" in order to maintain content for posterity. For further information, please refer to the %{link_start}user account deletion documentation.%{link_end}').html_safe % { link_start: link_start, link_end: '</a>'.html_safe }
  - personal_projects_count = user.personal_projects.count
  - unless personal_projects_count.zero?
    %li
      = n_('%d personal project will be removed and cannot be restored.', '%d personal projects will be removed and cannot be restored.', personal_projects_count) % personal_projects_count