OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/views/files/new.html.erb

19 lines
679 B

<h2><%=l(:label_attachment_new)%></h2>
<%= error_messages_for 'attachment' %>
<div class="box">
<%= form_tag(project_files_path(@project), :multipart => true, :class => "tabular") do %>
<% if @versions.any? %>
<p>
<label for="version_id"><%= Journal.human_attribute_name(:version) %></label>
<%= select_tag "version_id", content_tag('option', '') +
options_from_collection_for_select(@versions, "id", "name") %>
</p>
<% end %>
<p>
<label><%= l(:label_attachment_plural) %></label>
<%= render :partial => 'attachments/form' %>
</p>
<%= submit_tag l(:button_add) %>
<% end %>
</div>