5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-10-05 09:16:57 +00:00

usar los valores de la plantilla o los del post

This commit is contained in:
f 2018-05-17 15:34:44 -03:00
parent beaf98bbef
commit 07c937682b
No known key found for this signature in database
GPG key ID: F3FDAB97B5F9F7E7

View file

@ -80,7 +80,7 @@
.form-group .form-group
= label_tag "post_#{template}", template.humanize = label_tag "post_#{template}", template.humanize
- name = "post[#{template}]" - name = "post[#{template}]"
- value = @post.get_front_matter(template) - value = @post.new? ? @post.template_values_for(template) : @post.get_front_matter(template)
- case type - case type
- when 'text' - when 'text'
= text_field 'post', template, = text_field 'post', template,
@ -92,7 +92,7 @@
= hidden_field 'post', template, value: 'false' = hidden_field 'post', template, value: 'false'
= check_box_tag name, 'true', value == 'true', class: 'form-control' = check_box_tag name, 'true', value == 'true', class: 'form-control'
- when 'select' - when 'select'
= select_tag name, options_for_select(@post.template_values_for(template), value), = select_tag name, options_for_select(@post.template_values_for(template), @post.get_front_matter(template)),
{ class: 'form-control select2', { class: 'form-control select2',
multiple: @post.template_multiple_values?(template) } multiple: @post.template_multiple_values?(template) }
.form-group .form-group