use li tags for versions in version index (#13242)
Contributed by Filou Centrinov. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11781 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
bee45bac8f
commit
8d824f5088
|
@ -57,9 +57,13 @@
|
|||
<% end %>
|
||||
|
||||
<h3><%= l(:label_version_plural) %></h3>
|
||||
<ul>
|
||||
<% @versions.each do |version| %>
|
||||
<%= link_to format_version_name(version), "##{version_anchor(version)}" %><br />
|
||||
<li>
|
||||
<%= link_to(format_version_name(version), "##{version_anchor(version)}") %>
|
||||
</li>
|
||||
<% end %>
|
||||
</ul>
|
||||
<% if @completed_versions.present? %>
|
||||
<p>
|
||||
<%= link_to_function l(:label_completed_versions),
|
||||
|
|
Loading…
Reference in New Issue