33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
<% content_for :secondary do %>
|
|
<ul class="list">
|
|
<li><%= link_to t(:new_page, :scope => :admin), new_admin_page_path( :parent_name => @parent_item.name ), :class => 'button positive' %></li>
|
|
<li><%= link_to t(:new_link, :scope => :admin), new_admin_link_path( :parent_name => @parent_item.name ) %>
|
|
<li><%= link_to t(:new_snippet, :scope => :admin ), new_admin_snippet_path( :parent_name => @parent_item.name ), :class => 'button positive' %></li>
|
|
</ul>
|
|
<% end -%>
|
|
|
|
<h1>Listing items: <%= show_parent_items_link(@parent_item) %></h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Class</th>
|
|
<th>Name</th>
|
|
<th>Title</th>
|
|
<th>Position</th>
|
|
<th>Published?</th>
|
|
<th>Action</th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @items.each do |item| %>
|
|
<tr>
|
|
<%= render :partial => item.class.to_s.downcase, :locals => { :item => item } %>
|
|
<!--<td><%= link_to t(:move_up, :scope => :admin), up_admin_item_path(item), :method => :put %> |
|
|
<%= link_to t(:move_down, :scope => :admin), down_admin_item_path(item), :method => :put %></td>-->
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
|
|
<%= render :partial => "snippets", :locals => { :snippets => @snippets } %>
|