* fixed Issue 107: File/directory list display effect

git-svn-id: http://redmine-dmsf.googlecode.com/svn/trunk/redmine_dmsf@182 5e329b0b-a2ee-ea63-e329-299493fc886d
This commit is contained in:
vit.jonas@gmail.com 2011-06-29 14:05:01 +00:00
parent 6d7a4a0c70
commit 231a4bf418

View File

@ -27,7 +27,14 @@
form_tag({:action => "entries_operation", :id => @project, :folder_id => @folder}, :method => :post,
:class => "dmfs_entries", :id => "entries_form") do
%>
<%= hidden_field_tag("action") %>
<%= hidden_field_tag("action") %>
<div class="controls" style="float: left">
<%= submit_tag(l(:submit_download), :title => l(:title_download_checked), :name => "download_entries") %>
<%= submit_tag(l(:submit_email), :title => l(:title_send_checked_by_email), :name => "email_entries") %>
<% if User.current.allowed_to?(:file_manipulation, @project) %>
<button type="button" id="entries_delete_button" title="<%=l(:title_delete_checked)%>"><%=l(:button_delete)%></button>
<% end %>
</div>
<table class="display entries" id="browser">
<thead>
<tr id="root">
@ -174,13 +181,6 @@ form_tag({:action => "entries_operation", :id => @project, :folder_id => @folder
<% end %>
</tbody>
</table>
<div class="controls" style="float: left">
<%= submit_tag(l(:submit_download), :title => l(:title_download_checked), :name => "download_entries") %>
<%= submit_tag(l(:submit_email), :title => l(:title_send_checked_by_email), :name => "email_entries") %>
<% if User.current.allowed_to?(:file_manipulation, @project) %>
<button type="button" id="entries_delete_button" title="<%=l(:title_delete_checked)%>"><%=l(:button_delete)%></button>
<% end %>
</div>
<br />
<% end %>