diff options
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/edit.html.erb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb index d7c97c177..8c20e264d 100644 --- a/app/views/wiki/edit.html.erb +++ b/app/views/wiki/edit.html.erb @@ -13,6 +13,10 @@ <div class="box tabular"> <%= text_area_tag 'content[text]', @text, :cols => 100, :rows => 25, :class => 'wiki-edit', :accesskey => accesskey(:edit) %> +<% if @page.new_record? && @page.parent %> +<p><label><%= check_box_tag 'page[parent_id]', @page.parent.id %> <%= l(:field_parent_title) %></label> <%=h @page.parent.pretty_title %></p> +<% end %> + <p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120 %></p> <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p> </div> |