You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

new.html.erb 583B

12345678910111213141516
  1. <h2><%=l(:label_attachment_new)%></h2>
  2. <%= error_messages_for 'attachment' %>
  3. <%= form_tag(project_files_path(@project), :multipart => true, :class => "tabular") do %>
  4. <div class="box">
  5. <% if @versions.any? %>
  6. <p><label for="version_id"><%=l(:field_version)%></label>
  7. <%= select_tag "version_id", content_tag('option', '') +
  8. options_from_collection_for_select(@versions, "id", "name") %></p>
  9. <% end %>
  10. <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
  11. </div>
  12. <%= submit_tag l(:button_add) %>
  13. <% end %>