2019-11-07 16:08:14 +00:00
|
|
|
.form-group
|
|
|
|
- if metadata.uploaded?
|
|
|
|
= hidden_field_tag "post[#{attribute}][path]", metadata.value['path']
|
|
|
|
|
|
|
|
.custom-file
|
|
|
|
= file_field(*field_name_for('post', attribute, :path),
|
|
|
|
**field_options(attribute, metadata),
|
|
|
|
class: "custom-file-input #{invalid(post, attribute)}",
|
|
|
|
data: { preview: "#{attribute}-preview" })
|
|
|
|
= label_tag "post_#{attribute}_path",
|
|
|
|
post_label_t(attribute, :path, post: post), class: 'custom-file-label'
|
|
|
|
= render 'posts/attribute_feedback',
|
|
|
|
post: post, attribute: [attribute, :path], metadata: metadata
|
|
|
|
|
|
|
|
.form-group
|
|
|
|
= label_tag "post_#{attribute}_description",
|
|
|
|
post_label_t(attribute, :description, post: post)
|
|
|
|
= text_field(*field_name_for('post', attribute, :description),
|
|
|
|
value: metadata.value['description'],
|
2020-05-23 19:34:45 +00:00
|
|
|
dir: dir, lang: locale,
|
2019-11-07 16:08:14 +00:00
|
|
|
**field_options(attribute, metadata))
|
|
|
|
= render 'posts/attribute_feedback',
|
|
|
|
post: post, attribute: [attribute, :description], metadata: metadata
|