summaryrefslogtreecommitdiff
path: root/app/views/projects/protected_tags/shared/_index.html.haml
blob: 8f5ce798dc734bc517ed04a9289ea27569d4ff86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- expanded = expanded_by_default?

%section.settings.no-animate#js-protected-tags-settings{ class: ('expanded' if expanded), data: { qa_selector: 'protected_tag_settings_content' } }
  .settings-header
    %h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only
      = s_("ProtectedTag|Protected tags")
    %button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
      = expanded ? 'Collapse' : 'Expand'
    %p
      = s_("ProtectedTag|Limit access to creating and updating tags.")
      =  link_to s_("ProtectedTag|What are protected tags?"), help_page_path("user/project/protected_tags")
  .settings-content
    %p
      = s_("ProtectedTag|By default, protected tags restrict who can modify the tag.")
      = link_to s_("ProtectedTag|Learn more."), help_page_path("user/project/protected_tags", anchor: "who-can-modify-a-protected-tag")

    - if can? current_user, :admin_project, @project
      = yield :create_protected_tag

    = yield :tag_list