2020-05-31 22:38:19 +02:00
|
|
|
<%= bootstrap_form_with model: model do |form| %>
|
|
|
|
|
<%= field_set_tag content_tag(:span, t(".heading"), class: "h6 text-muted text-uppercase") do %>
|
|
|
|
|
<%= render "shared/files_dropzone_fields", form: form, directory: directory %>
|
|
|
|
|
<% end %>
|
|
|
|
|
<div class="pt-3">
|
2020-07-29 05:15:02 +00:00
|
|
|
<%= form.submit t(".submit"), id: "upload_directory_files", class: "btn btn-block btn-success", data: { disable_with: t("shared.disable_with") } %>
|
2020-05-31 22:38:19 +02:00
|
|
|
</div>
|
|
|
|
|
<% end %>
|