##// END OF EJS Templates
Adds last edit comments on the wiki page (#7082)....
Adds last edit comments on the wiki page (#7082). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10719 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r10507:a679d19709cf
Show More
rename.html.erb
21 lines | 769 B | text/plain | TextLexer
Jean-Philippe Lang
Adds breadcrumb on all wiki page views....
r6062 <%= wiki_page_breadcrumb(@page) %>
Toshi MARUYAMA
code layout clean up app/views/wiki/rename.html.erb...
r8364 <h2><%= h @original_title %></h2>
Jean-Philippe Lang
Added the ability to rename wiki pages (specific permission required)....
r709
<%= error_messages_for 'page' %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= labelled_form_for :wiki_page, @page,
Toshi MARUYAMA
Rails3: view: use explicit post method at wiki/rename.html.erb...
r8363 :url => { :action => 'rename' },
:html => { :method => :post } do |f| %>
Jean-Philippe Lang
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <div class="box tabular">
Jean-Philippe Lang
Wiki page hierarchy (#528). Parent page can be assigned on Rename screen....
r1689 <p><%= f.text_field :title, :required => true, :size => 100 %></p>
Jean-Philippe Lang
Added the ability to rename wiki pages (specific permission required)....
r709 <p><%= f.check_box :redirect_existing_links %></p>
Toshi MARUYAMA
code layout clean up app/views/wiki/rename.html.erb...
r8364 <p><%= f.select :parent_id,
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 content_tag('option', '', :value => '') +
Toshi MARUYAMA
code layout clean up app/views/wiki/rename.html.erb...
r8364 wiki_page_options_for_select(
@wiki.pages.all(:include => :parent) - @page.self_and_descendants,
@page.parent),
:label => :field_parent_title %></p>
Jean-Philippe Lang
Added the ability to rename wiki pages (specific permission required)....
r709 </div>
<%= submit_tag l(:button_rename) %>
<% end %>