Added site map and titel list to pages/all

* pages/all now consists of three alternativ views: recent changes, site map and title list
This commit is contained in:
sandoz 2009-10-05 17:25:19 +02:00
parent 305a4ac895
commit 90f760858e
7 changed files with 58 additions and 10 deletions

View file

@ -0,0 +1,8 @@
-ident = 20 * level
%tr
%td{:style => "padding-left: #{ident}px"}
= link_to page.title, wiki_page_path(page.permalink)
%td= "#{User.find(page.updated_by).nick} (#{format_datetime_timespec(page.updated_at, '%a, %d. %B %Y %H:%M:%S')})"
-if siteMap == 1
-for child in page.children.all
= render :partial => 'page_list_item', :locals => {:page => child, :level => level+1, :siteMap => 1}