##// END OF EJS Templates
Ability to sort issues by grouped column (#3511)....
Ability to sort issues by grouped column (#3511). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10765 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9852:705f96ccde44
r10543:9f148e098b07
Show More
_wiki.html.erb
19 lines | 734 B | text/plain | TextLexer
Jean-Philippe Lang
Removes calls to remote_form_for....
r9852 <%= labelled_form_for @wiki,
Toshi MARUYAMA
view: labelled_remote_form_for: equals sign mandatory to print blocks and use :as...
r9391 :as => :wiki,
Jean-Philippe Lang
Removes calls to remote_form_for....
r9852 :url => { :controller => 'wikis', :action => 'edit', :id => @project },
:remote => true, :method => 'post' do |f| %>
Jean-Philippe Lang
Added project module concept....
r714
<%= error_messages_for 'wiki' %>
<div class="box tabular">
Jean-Philippe Lang
Adds specific css class for information in forms....
r8634 <p><%= f.text_field :start_page, :size => 60, :required => true %>
<em class="info"><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em></p>
Jean-Philippe Lang
Added project module concept....
r714 </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 %>