mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 06:41:42 +00:00
14 lines
564 B
Text
14 lines
564 B
Text
|
.form-group
|
||
|
= label_tag "post_#{attribute}", post_label_t(attribute, post: post)
|
||
|
= text_field 'post', attribute, value: metadata.value,
|
||
|
dir: dir, lang: locale, list: id_for_datalist(attribute),
|
||
|
pattern: metadata.values.values.join('|'), autocomplete: 'off',
|
||
|
**field_options(attribute, metadata)
|
||
|
= render 'posts/attribute_feedback',
|
||
|
post: post, attribute: attribute, metadata: metadata
|
||
|
|
||
|
-# TODO: Ocultar el UUID
|
||
|
%datalist{ id: id_for_datalist(attribute) }
|
||
|
- metadata.values.each_pair do |key, value|
|
||
|
%option{ value: value }= key
|