You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
720 B
18 lines
720 B
- checkboxes ||= false
|
|
- less_info ||= false
|
|
.policy-agreement
|
|
- if @is_policy_page
|
|
%h2=_'articles.policy.headings.The_Agreement'
|
|
- else
|
|
%h3=_'articles.policy.headings.The_Agreement'
|
|
%ul
|
|
- policies.each do |term|
|
|
%li{id: checkboxes ? nil : term, class: checkboxes ? nil : :target}
|
|
- if checkboxes
|
|
= check_box_tag(term, 1, false, required: true)
|
|
.term=_"articles.policy.term.#{term.to_s}", :s, 2
|
|
- unless less_info
|
|
%h3=_'articles.policy.headings.Why','Why have a Safer Space Agreement?'
|
|
%p=_'articles.policy.paragraphs.Why', :p
|
|
%h3=_'articles.policy.headings.How','How is the policy enforced?'
|
|
%p=_'articles.policy.paragraphs.How', :p
|
|
|