29 lines
1.0 KiB
Plaintext
29 lines
1.0 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_component, :scope => :admin), new_admin_component_path( :parent_name => @parent_item.name ) %>
|
|
<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>
|
|
</tr>
|
|
|
|
<% @items.each do |item| %>
|
|
<%= render :partial => item.class.to_s.downcase, :locals => { :item => item } %>
|
|
<% end %>
|
|
</table>
|
|
|
|
|
|
<%= render :partial => "snippets", :locals => { :snippets => @snippets } %>
|