##// END OF EJS Templates
Speeds up very slow tests....
Speeds up very slow tests. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3197 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2115:66ff4cb7de55
r3083:b5b6a5e971fa
Show More
add_file.rhtml
16 lines | 583 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_attachment_new)%></h2>
<%= error_messages_for 'attachment' %>
<div class="box">
<% form_tag({ :action => 'add_file', :id => @project }, :multipart => true, :class => "tabular") do %>
Jean-Philippe Lang
Files module: makes version field non required (#1053)....
r2115 <% if @versions.any? %>
<p><label for="version_id"><%=l(:field_version)%></label>
<%= select_tag "version_id", content_tag('option', '') +
options_from_collection_for_select(@versions, "id", "name") %></p>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
<%= submit_tag l(:button_add) %>
Jean-Philippe Lang
Files module: makes version field non required (#1053)....
r2115 <% end %>