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

_index.html.haml « protected_tags « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 663cbd7cd64d31613fa4d06b7055bf7532e1ead4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- content_for :page_specific_javascripts do
  = page_specific_javascript_bundle_tag('protected_tags')

.row.prepend-top-default.append-bottom-default
  .col-lg-3
    %h4.prepend-top-0
      Protected Tags
    %p.prepend-top-20
      By default, protected tags are designed to:
      %ul
        %li Prevent tag creation by everybody except Masters
        %li Prevent <strong>anyone</strong> from updating the tag
        %li Prevent <strong>anyone</strong> from deleting the tag
      %p.append-bottom-0 Read more about #{link_to "protected tags", help_page_path("user/project/protected_tags"), class: "underlined-link"}.
  .col-lg-9
    - if can? current_user, :admin_project, @project
      = render 'projects/protected_tags/create_protected_tag'

    = render "projects/protected_tags/tags_list"