##// END OF EJS Templates
Postgresql 8.3 compatibility fix (#834)....
Postgresql 8.3 compatibility fix (#834). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1363 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1166:9daf39ec5242
r1348:ffbdc6b25bdc
Show More
add_file.rhtml
12 lines | 537 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 %>
<p><label for="version_id"><%=l(:field_version)%> <span class="required">*</span></label>
<%= select_tag "version_id", options_from_collection_for_select(@versions, "id", "name") %></p>
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
deprecated start_form_tag replaced by form_tag...
r181 <% end %>