Files
nairobi/app/views/admin/site_customization/documents/new.html.erb
Javi Martín cf9e36c767 Replace single quotes with double quotes
Most of these quotes were in the dashboard branch before we added the
rule for double quotes.
2019-09-10 19:21:03 +02:00

11 lines
356 B
Plaintext

<h2><%= t("admin.documents.new.title") %></h2>
<%= form_for @document,
url: admin_site_customization_documents_path do |f| %>
<%= f.file_field "attachment", label: t("admin.documents.new.label_attachment") %>
<div class="margin-top">
<%= f.submit t("admin.documents.new.submit_button"), class: "button success" %>
</div>
<% end %>