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/attachments/_form.html.erb

15 lines
642 B

<div id="attachments_fields">
<div id="attachment_template" class="attachment_field">
<%= file_field_tag 'attachments[1][file]', :size => 15, :id => nil, :class => "attachment_choose_file" -%>
<label class="label-with-input" >
<%= l(:label_optional_description) %>
<%= text_field_tag 'attachments[1][description]', '', :size => 38, :id => nil %>
</label>
</div>
</div>
<br />
<span class="add_another_file">
<%= link_to l(:label_add_another_file), '#', :onclick => 'addFileField(); return false;' %>
(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
</span>