##// END OF EJS Templates
Changed style of the wiki edit form....
Changed style of the wiki edit form. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8253 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8021:9636882c1e89
r8133:17d08a939fad
Show More
rename.html.erb
14 lines | 591 B | text/plain | TextLexer
Jean-Philippe Lang
Adds breadcrumb on all wiki page views....
r6062 <%= wiki_page_breadcrumb(@page) %>
<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
Use #labelled_form_for instead of #labelled_tabular_form_for....
r8021 <% labelled_form_for :wiki_page, @page, :url => { :action => 'rename' } do |f| %>
<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>
Jean-Philippe Lang
Adds a combo to select parent on wiki page rename (#5136)....
r4261 <p><%= f.select :parent_id, "<option value=''></option>" + 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 %>