You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_sidebar.html.erb 570B

12345678910111213141516
  1. <% if @wiki && @wiki.sidebar -%>
  2. <div class="wiki">
  3. <%= textilizable @wiki.sidebar.content, :text %>
  4. </div>
  5. <% end -%>
  6. <h3><%= l(:label_wiki) %></h3>
  7. <ul>
  8. <li><%= link_to(l(:field_start_page), {:action => 'show', :id => nil}) %></li>
  9. <li><%= link_to(l(:label_index_by_title), {:action => 'index'}) %></li>
  10. <li><%= link_to(l(:label_index_by_date),
  11. {:controller => 'wiki', :project_id => @project,
  12. :action => 'date_index'}) %></li>
  13. </ul>
  14. <%= call_hook(:view_wiki_show_sidebar_bottom, :wiki => @wiki, :page => @page) %>