Mercurial > hg > soundsoftware-site
comparison .svn/pristine/22/2215da5ea32efbcca552e4718d4f9896046cbfa7.svn-base @ 1296:038ba2d95de8 redmine-2.2
Fix redmine-2.2 branch update (add missing svn files)
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:05:06 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1294:3e4c3460b6ca | 1296:038ba2d95de8 |
---|---|
1 <%= wiki_page_breadcrumb(@page) %> | |
2 | |
3 <h2><%= h @original_title %></h2> | |
4 | |
5 <%= error_messages_for 'page' %> | |
6 | |
7 <%= labelled_form_for :wiki_page, @page, | |
8 :url => { :action => 'rename' }, | |
9 :html => { :method => :post } do |f| %> | |
10 <div class="box tabular"> | |
11 <p><%= f.text_field :title, :required => true, :size => 100 %></p> | |
12 <p><%= f.check_box :redirect_existing_links %></p> | |
13 <p><%= f.select :parent_id, | |
14 content_tag('option', '', :value => '') + | |
15 wiki_page_options_for_select( | |
16 @wiki.pages.all(:include => :parent) - @page.self_and_descendants, | |
17 @page.parent), | |
18 :label => :field_parent_title %></p> | |
19 </div> | |
20 <%= submit_tag l(:button_rename) %> | |
21 <% end %> |