Mercurial > hg > soundsoftware-site
comparison .svn/pristine/ea/ea9721cdf4dd7204c0ca90b60d0c1647956cea47.svn-base @ 1295:622f24f53b42 redmine-2.3
Update to Redmine SVN revision 11972 on 2.3-stable branch
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:02:21 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1294:3e4c3460b6ca | 1295:622f24f53b42 |
---|---|
1 <%= labelled_form_for @wiki, | |
2 :as => :wiki, | |
3 :url => { :controller => 'wikis', :action => 'edit', :id => @project }, | |
4 :remote => true, :method => 'post' do |f| %> | |
5 | |
6 <%= error_messages_for 'wiki' %> | |
7 | |
8 <div class="box tabular"> | |
9 <p><%= f.text_field :start_page, :size => 60, :required => true %> | |
10 <em class="info"><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em></p> | |
11 </div> | |
12 | |
13 <div class="contextual"> | |
14 <%= link_to(l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project}, | |
15 :class => 'icon icon-del') if @wiki && !@wiki.new_record? %> | |
16 </div> | |
17 | |
18 <%= submit_tag((@wiki.nil? || @wiki.new_record?) ? l(:button_create) : l(:button_save)) %> | |
19 <% end %> |