<%#= # Redmine plugin for Document Management System "Features" # # Copyright (C) 2011 Vít Jonáš # Copyright (C) 2012 Daniel Munn # Copyright (C) 2013 Karel Pičman # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. %>
<%= hidden_field_tag("commited_files[#{i}][disk_filename]", upload.disk_filename) %>

<%= label_tag("commited_files[#{i}][title]", "#{l(:label_title)}:") %> <%= text_field_tag("commited_files[#{i}][title]", upload.title, :size => '32') %>

<%= label_tag('', "#{l(:label_filename)}:") %> <%= h(upload.name) %> <%= hidden_field_tag("commited_files[#{i}][name]", upload.name) %>

<%= label_tag("commited_files[#{i}][description]", "#{l(:label_description)}:") %>

<%= text_area_tag("commited_files[#{i}][description]", upload.description, :rows=> '6', :class => 'wiki-edit') %>

<%= label_tag("commited_files[#{i}][version]_minor", "#{l(:label_version)}:") %>

<%= radio_button_tag("commited_files[#{i}][version]", 1, true) %> <%= upload.major_version %>.<%= upload.minor_version + 1 %> <%= l(:option_version_minor) %>
<%= radio_button_tag("commited_files[#{i}][version]", 2) %> <%= upload.major_version + 1 %>.0 <%= l(:option_version_major) %>

<%= label_tag('', "#{l(:label_mime)}:") %> <%= h(upload.mime_type) %>

<%= label_tag('', "#{l(:label_size)}:") %> <%= number_to_human_size(upload.size) %>


<% upload.custom_values.each do |value| %>

<%= custom_field_tag_with_label("commited_files[#{i}][dmsf_file_revision]", value) %>

<% end %>

<%= label_tag("commited_files[#{i}][comment]", "#{l(:label_comment)}:") %>

<%= text_area_tag("commited_files[#{i}][comment]", upload.comment, :rows=> '2', :style => 'width: 99%;') %>

<%= wikitoolbar_for "commited_files_#{i}_description" %>