24 lines
788 B
Plaintext
24 lines
788 B
Plaintext
<tr id="<%= "plugin_file_#{form_file.id}" if !form_file.new_record? %>" class="list_item">
|
|
<td>
|
|
<div>
|
|
<%= f.file_field :file, class: "s_grid_2 s_grid" %>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<%= f.text_field :title, :class=>'s_grid_3 s_grid' %>
|
|
</td>
|
|
|
|
<td>
|
|
<span class="action">
|
|
<% if form_file.new_record? %>
|
|
<a class="delete"><i class="icon-remove"></i></a>
|
|
<% else %>
|
|
<%= f.hidden_field :id %>
|
|
<a class="remove_existing_record"><i class="icon-remove"></i></a>
|
|
<%= f.hidden_field :should_destroy, :value => nil, :class => 'should_destroy' %>
|
|
<% end %>
|
|
<%= form_file.file.file ? ( link_to '', form_file.file.url, {:class => 'icon-eye-open', :target => '_blank', :title => t(:view)} ) : '' %>
|
|
</span>
|
|
</td>
|
|
</tr>
|