debian-mirror-gitlab/app/views/shared/tokens/_scopes_form.html.haml

10 lines
513 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
- scopes = local_assigns.fetch(:scopes)
- prefix = local_assigns.fetch(:prefix)
- token = local_assigns.fetch(:token)
- scopes.each do |scope|
2018-11-08 19:23:39 +05:30
%fieldset.form-group.form-check
2021-06-08 01:23:25 +05:30
= check_box_tag "#{prefix}[scopes][]", scope, token.scopes.include?(scope), id: "#{prefix}_scopes_#{scope}", class: "form-check-input", data: { qa_selector: "#{scope}_checkbox" }
2021-04-29 21:17:54 +05:30
= label_tag "#{prefix}_scopes_#{scope}", scope, class: 'label-bold form-check-label'
2020-05-24 23:13:21 +05:30
.text-secondary= t scope, scope: scope_description(prefix)