We were adding <div> tags with the `images` or `documents` HTML class prettly much every time we rendered a NestedComponent. We're now including the HTML class inside the component, as we usually do. We're also rendering the nested components directly, since it's been a while since the partials were changed to simply render the components.
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
<fieldset class="documents-list documents">
|
|
<legend><%= t("documents.form.title") %></legend>
|
|
<p class="help-text"><%= note %></p>
|
|
|
|
<div id="nested-documents" data-max-documents-allowed="<%= max_documents_allowed %>">
|
|
<%= f.fields_for :documents do |documents_builder| %>
|
|
<%= render Documents::FieldsComponent.new(documents_builder) %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to_add_association t("documents.form.add_new_document"), f, :documents,
|
|
partial: "documents/document_fields",
|
|
id: "new_document_link",
|
|
class: "button upload-document
|
|
#{"hide" if max_documents_allowed?}",
|
|
data: {
|
|
association_insertion_node: "#nested-documents",
|
|
association_insertion_method: "append"
|
|
} %>
|
|
|
|
<div id="max-documents-notice" class="max-documents-notice callout primary text-center <%= "hide" unless max_documents_allowed? %>">
|
|
<%= sanitize(t("documents.max_documents_allowed_reached")) %>
|
|
</div>
|
|
</fieldset>
|