2018-06-19 20:38:43 +00:00
|
|
|
= select_tag field_name_for_post_as_string(name),
|
|
|
|
options_for_select(template.values, @post.get_front_matter(template)),
|
|
|
|
{ class: 'form-control select2',
|
|
|
|
multiple: template.multiple?,
|
|
|
|
required: template.required?,
|
|
|
|
data: { tags: template.open?,
|
2018-06-20 18:00:32 +00:00
|
|
|
placeholder: t('posts.select.placeholder'),
|
|
|
|
'allow-clear': template.multiple?,
|
|
|
|
'maximum-selection-length': template.max }}
|
2018-06-19 20:38:43 +00:00
|
|
|
- if template.open?
|
|
|
|
%small.text-muted.form-text= t('posts.open')
|
2018-06-22 19:48:58 +00:00
|
|
|
- if template.max > 0
|
|
|
|
%small= t('posts.select.max', max: template.max)
|