To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 1f / 1f801059ed33453ec7884c4bce2b26f547910719.svn-base @ 1298:4f746d8966dd

History | View | Annotate | Download (583 Bytes)

1
<h2><%=l(:label_attachment_new)%></h2>
2

    
3
<%= error_messages_for 'attachment' %>
4
<%= form_tag(project_files_path(@project), :multipart => true, :class => "tabular") do %>
5
<div class="box">
6

    
7
<% if @versions.any? %>
8
<p><label for="version_id"><%=l(:field_version)%></label>
9
<%= select_tag "version_id", content_tag('option', '') +
10
                             options_from_collection_for_select(@versions, "id", "name") %></p>
11
<% end %>
12

    
13
<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
14
</div>
15
<%= submit_tag l(:button_add) %>
16
<% end %>