diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-03 11:39:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-05-03 11:39:23 +0000 |
commit | 452c71c9dcb02834ddbd14b1b8c648a1f6a2fe16 (patch) | |
tree | 081f4ba6dc6205b497245932ca11257edf6fe5fc /app/views/versions | |
parent | 42753001eab842cd3a2da073fb5b49a4f122d63f (diff) | |
download | redmine-452c71c9dcb02834ddbd14b1b8c648a1f6a2fe16.tar.gz redmine-452c71c9dcb02834ddbd14b1b8c648a1f6a2fe16.zip |
use li tags for label completed versions and subproject in version index sidebar (#13242)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11783 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r-- | app/views/versions/index.html.erb | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index abf36b1b2..b78005a9b 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -48,11 +48,21 @@ <% end %> </ul> <p></p> -<label for="completed"><%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %></label> -<% if @project.descendants.active.any? %> - <%= hidden_field_tag 'with_subprojects', 0 %> - <br /><label><%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%></label> -<% end %> +<ul> + <li> + <label for="completed"> + <%= check_box_tag "completed", 1, params[:completed] %> <%= l(:label_show_completed_versions) %> + </label> + </li> + <% if @project.descendants.active.any? %> + <li> + <%= hidden_field_tag 'with_subprojects', 0 %> + <label> + <%= check_box_tag 'with_subprojects', 1, @with_subprojects %> <%=l(:label_subproject_plural)%> + </label> + </li> + <% end %> +</ul> <p><%= submit_tag l(:button_apply), :class => 'button-small', :name => nil %></p> <% end %> |