##// END OF EJS Templates
enumerations/list redesign...
enumerations/list redesign git-svn-id: http://redmine.rubyforge.org/svn/trunk@139 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r128:6487c1803fa9
r136:9f76b4d2ef9f
Show More
add_document.rhtml
15 lines | 566 B | text/html+ruby | RhtmlLexer
/ app / views / projects / add_document.rhtml
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_document_new)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <%= start_form_tag( { :action => 'add_document', :id => @project }, :class => "tabular", :multipart => true) %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= render :partial => 'documents/form' %>
Jean-Philippe Lang
tables and forms redesign,...
r19
<div class="box">
Jean-Philippe Lang
added multiple file upload for documents and files modules...
r127 <p id="attachments_p"><label for="attachment_file"><%=l(:label_attachment)%>&nbsp;
<%= link_to_function image_tag('add'), "addFileField()" %></label>
Jean-Philippe Lang
option to set maximum size of uploaded files...
r128 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= human_size(Attachment.max_size) %>)</em></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 </div>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= submit_tag l(:button_create) %>
Jean-Philippe Lang
Initial commit...
r2 <%= end_form_tag %>