Improve sorting of wiki pages

Sorting is completely broken. Also align the sorting UI with other pages.
This commit is contained in:
Patrick Gansterer 2016-03-06 18:32:46 +01:00
parent f5b6fbcf18
commit bd2c961e23
5 changed files with 16 additions and 24 deletions

View file

@ -8,5 +8,5 @@
= render :partial => 'page_list_item', :locals => {:page => homepage, :level => 0, :siteMap => 1}
%tbody
- for page in @pages
- if page.id != homepage.try(:id)
- if page.id != homepage.try(:id) && !page.parent_id?
= render :partial => 'page_list_item', :locals => {:page => page, :level => 0, :siteMap => 1}