Mercurial > hg > soundsoftware-site
comparison app/views/wiki/rename.html.erb @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | 433d4f72a19b |
children |
comparison
equal
deleted
inserted
replaced
1516:b450a9d58aed | 1517:dffacf8a6908 |
---|---|
11 <p><%= f.text_field :title, :required => true, :size => 100 %></p> | 11 <p><%= f.text_field :title, :required => true, :size => 100 %></p> |
12 <p><%= f.check_box :redirect_existing_links %></p> | 12 <p><%= f.check_box :redirect_existing_links %></p> |
13 <p><%= f.select :parent_id, | 13 <p><%= f.select :parent_id, |
14 content_tag('option', '', :value => '') + | 14 content_tag('option', '', :value => '') + |
15 wiki_page_options_for_select( | 15 wiki_page_options_for_select( |
16 @wiki.pages.all(:include => :parent) - @page.self_and_descendants, | 16 @wiki.pages.includes(:parent).all - @page.self_and_descendants, |
17 @page.parent), | 17 @page.parent), |
18 :label => :field_parent_title %></p> | 18 :label => :field_parent_title %></p> |
19 </div> | 19 </div> |
20 <%= submit_tag l(:button_rename) %> | 20 <%= submit_tag l(:button_rename) %> |
21 <% end %> | 21 <% end %> |