##// END OF EJS Templates
Additional tests for SearchController and handle my_projects scope without memberships....
Additional tests for SearchController and handle my_projects scope without memberships. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8266 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8022:ede9a03405fb
r8146:bb0cd34f4e2e
Show More
_wiki.html.erb
17 lines | 652 B | text/plain | TextLexer
Jean-Philippe Lang
Removed TabularFormBuilder references in views....
r8022 <% labelled_remote_form_for :wiki, @wiki,
:url => { :controller => 'wikis', :action => 'edit', :id => @project } do |f| %>
Jean-Philippe Lang
Added project module concept....
r714
<%= error_messages_for 'wiki' %>
<div class="box tabular">
<p><%= f.text_field :start_page, :size => 60, :required => true %><br />
<em><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em></p>
</div>
<div class="contextual">
<%= link_to(l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project},
:class => 'icon icon-del') if @wiki && !@wiki.new_record? %>
</div>
<%= submit_tag((@wiki.nil? || @wiki.new_record?) ? l(:button_create) : l(:button_save)) %>
<% end %>