diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-03 08:09:26 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-03 08:09:26 +0000 |
commit | eb8770899ca21b18a6317d55f158a15cd5502da5 (patch) | |
tree | 56b0027bc4c4d24159b784fc2bfb2245a4bc1184 /app/views/wiki | |
parent | 784f33daa7ac700151d45168dfe5ed3d0c5fbfc6 (diff) | |
download | redmine-eb8770899ca21b18a6317d55f158a15cd5502da5.tar.gz redmine-eb8770899ca21b18a6317d55f158a15cd5502da5.zip |
use li tags for issue links in the wiki sidebar (#13242)
Contributed by Filou Centrinov.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11775 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/_sidebar.html.erb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/wiki/_sidebar.html.erb b/app/views/wiki/_sidebar.html.erb index b4034d88b..7208376dc 100644 --- a/app/views/wiki/_sidebar.html.erb +++ b/app/views/wiki/_sidebar.html.erb @@ -3,7 +3,10 @@ <% end -%> <h3><%= l(:label_wiki) %></h3> - -<%= link_to l(:field_start_page), {:action => 'show', :id => nil} %><br /> -<%= link_to l(:label_index_by_title), {:action => 'index'} %><br /> -<%= link_to l(:label_index_by_date), {:controller => 'wiki', :project_id => @project, :action => 'date_index'} %><br /> +<ul> + <li><%= link_to(l(:field_start_page), {:action => 'show', :id => nil}) %></li> + <li><%= link_to(l(:label_index_by_title), {:action => 'index'}) %></li> + <li><%= link_to(l(:label_index_by_date), + {:controller => 'wiki', :project_id => @project, + :action => 'date_index'}) %></li> +</ul> |