Sha256: 5b4652e18c2fc72745c62f16072bd309d22c6ac88ac35b4cc78c215030c158ac

Contents?: true

Size: 588 Bytes

Versions: 125

Compression:

Stored size: 588 Bytes

Contents

<%
        
def category_list(cat)  
  str = "<ul>"
  str << category_list_items(cat)
  str << "</ul>"
  return str
end
      
def category_list_items(cat)     
  str = "<li><a href='/admin/categories/#{cat.id}'>#{cat.name}</a>"        
  cat.children.each{ |kid| str << category_list(kid) } if cat.children && cat.children.count > 0    
  str << "</li>"
  return str
end
    
%>

<h1>Categories</h1>
<a class="caboose-btn" href='/admin/categories/new'>New Category</a>
<%= category_list(@top_cat) %>

<% content_for :caboose_js do %>
<script type='text/javascript'>
	
</script>
<% end %>

Version data entries

125 entries across 125 versions & 1 rubygems

Version Path
caboose-cms-0.9.190 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.189 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.188 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.187 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.186 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.185 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.184 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.183 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.182 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.181 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.180 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.179 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.178 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.177 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.176 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.175 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.174 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.173 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.172 app/views/caboose/categories/admin_index.html.erb
caboose-cms-0.9.171 app/views/caboose/categories/admin_index.html.erb