Remove useless files in items
This commit is contained in:
parent
75a3c4d5b1
commit
f3f405c1b4
|
@ -1,11 +0,0 @@
|
|||
|
||||
<td><%= item.class %></td>
|
||||
<td><%= link_to item.name, admin_items_path(:parent_name => item.name) %></td>
|
||||
<td><%=h item.title %>
|
||||
<td><%= item.position %></td>
|
||||
<td><%= item.is_published.to_s %></td>
|
||||
<td>
|
||||
<%= link_to t(:show), item.url %> |
|
||||
<%= link_to t(:edit), edit_admin_component_path(item) %> |
|
||||
<%= link_to t(:delete), admin_component_path(item), :confirm => t('sure?'), :method => :delete %>
|
||||
</td>
|
|
@ -1,10 +0,0 @@
|
|||
<td><%= item.class %></td>
|
||||
<td><%= link_to item.name, admin_items_path(:parent_id => item.id) %></td>
|
||||
<td><%= item.i18n_variable[I18n.locale] rescue nil %>
|
||||
<td><%= item.position %></td>
|
||||
<td><%= item.is_published.to_s %></td>
|
||||
<td>
|
||||
<%= link_to t(:show), item.url %> |
|
||||
<%= link_to t(:edit), edit_admin_home_path(item) %> |
|
||||
<%= link_to t(:delete), admin_home_path(item), :confirm => t('sure?'), :method => :delete %>
|
||||
</td>
|
|
@ -1,10 +0,0 @@
|
|||
<td><%= item.class %></td>
|
||||
<td><%= item.name %></td>
|
||||
<td><%= item.i18n_variable[I18n.locale] rescue nil %>
|
||||
<td><%= item.position %></td>
|
||||
<td><%= item.is_published.to_s %></td>
|
||||
<td>
|
||||
<%= link_to t(:show), item.url %> |
|
||||
<%= link_to t(:edit), edit_admin_link_path(item) %> |
|
||||
<%= link_to t(:delete), admin_link_path(item), :confirm => t('sure?'), :method => :delete %>
|
||||
</td>
|
|
@ -1,15 +0,0 @@
|
|||
<h1><%= t('admin.list_snippets') %></h1>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
</tr>
|
||||
|
||||
<% snippets.each do |snippet| %>
|
||||
<tr>
|
||||
<td><%= snippet.name %></td>
|
||||
<td><%= link_to t(:show), admin_snippet_path(snippet) %>
|
||||
<td><%= link_to t(:edit), edit_admin_snippet_path(snippet) %></td>
|
||||
<td><%= link_to t(:delete), admin_snippet_path(snippet), :confirm => t('sure?'), :method => :delete %></td>
|
||||
</tr>
|
||||
<% end if snippets%>
|
||||
</table>
|
Loading…
Reference in New Issue