mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-20 01:11:48 +00:00
13 lines
565 B
Text
13 lines
565 B
Text
.form-group
|
|
= label_tag "#{base}_#{attribute}", post_label_t(attribute, post: post)
|
|
= text_field base, 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
|