mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 08:21:41 +00:00
trabajar correctamente con checkbox
This commit is contained in:
parent
17d6d01aeb
commit
0d5c974f6d
1 changed files with 4 additions and 3 deletions
|
@ -80,7 +80,7 @@
|
|||
.form-group
|
||||
= label_tag "post_#{template}", template.humanize
|
||||
- name = "post[#{template}]"
|
||||
- value = @post.template_values_for(template)
|
||||
- value = @post.get_front_matter(template)
|
||||
- case type
|
||||
- when 'text'
|
||||
= text_field 'post', template,
|
||||
|
@ -89,9 +89,10 @@
|
|||
- when 'text_area'
|
||||
= text_area_tag name, value, class: 'form-control'
|
||||
- when 'check_box'
|
||||
= check_box_tag name, value: value, class: 'form-control'
|
||||
= hidden_field 'post', template, value: 'false'
|
||||
= check_box_tag name, 'true', value == 'true', class: 'form-control'
|
||||
- when 'select'
|
||||
= select_tag name, options_for_select(value, @post.get_front_matter(template)),
|
||||
= select_tag name, options_for_select(@post.template_values_for(template), value),
|
||||
{ class: 'form-control select2',
|
||||
multiple: @post.template_multiple_values?(template) }
|
||||
.form-group
|
||||
|
|
Loading…
Reference in a new issue