summaryrefslogtreecommitdiff
path: root/app/views/shared/_visibility_level.html.haml
blob: 73efec88bb1c802f867d2435d77a3e2e41f62125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- with_label = local_assigns.fetch(:with_label, true)

.form-group.project-visibility-level-holder
  - if with_label
    = f.label :visibility_level, class: 'control-label' do
      Visibility Level
      = link_to icon('question-circle'), help_page_path("public_access/public_access")
  %div{ :class => ("col-sm-10" if with_label) }
    - if can_change_visibility_level
      = render('shared/visibility_radios', model_method: :visibility_level, form: f, selected_level: visibility_level, form_model: form_model)
    - else
      %div
        %span.info
          = visibility_level_icon(visibility_level)
          %strong
            = visibility_level_label(visibility_level)
          .light= visibility_level_description(visibility_level, form_model)