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

index.html.haml « repositories « registry « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6060d697f52e3ceae8c59e5080e16aceaa717088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
- page_title _("Container Registry")
- @content_class = "limit-container-width" unless fluid_layout
- add_page_startup_graphql_call('container_registry/get_container_repositories', { fullPath: @group.full_path, first: 10, name: nil, isGroupPage: true, sort: nil} )

%section
  #js-container-registry{ data: { endpoint: group_container_registries_path(@group),
    "help_page_path" => help_page_path('user/packages/container_registry/index'),
    "two_factor_auth_help_link" => help_page_path('user/profile/account/two_factor_authentication'),
    "personal_access_tokens_help_link" => help_page_path('user/profile/personal_access_tokens'),
    "no_containers_image" => image_path('illustrations/docker-empty-state.svg'),
    "containers_error_image" => image_path('illustrations/docker-error-state.svg'),
    "registry_host_url_with_port" => escape_once(registry_config.host_port),
    "garbage_collection_help_page_path" => help_page_path('administration/packages/container_registry', anchor: 'container-registry-garbage-collection'),
    "run_cleanup_policies_help_page_path" => help_page_path('administration/packages/container_registry', anchor: 'run-the-cleanup-policy-now'),
    "container_registry_importing_help_page_path" => help_page_path('user/packages/container_registry/index', anchor: 'tags-temporarily-cannot-be-marked-for-deletion'),
    "is_admin": current_user&.admin.to_s,
    is_group_page: "true",
    "group_path": @group.full_path,
    "gid_prefix": container_repository_gid_prefix,
    connection_error: (!!@connection_error).to_s,
    invalid_path_error: (!!@invalid_path_error).to_s,
    user_callouts_path: callouts_path,
    user_callout_id: Users::CalloutsHelper::UNFINISHED_TAG_CLEANUP_CALLOUT,
    show_unfinished_tag_cleanup_callout: show_unfinished_tag_cleanup_callout?.to_s } }