diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-11-05 18:02:26 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-11-05 18:02:26 +0000 |
commit | 4c51d637616af48169d55970138f98e9db3a707d (patch) | |
tree | 7a99da83bad9629e0e58c023f31f14567667a462 /app/views | |
parent | fc1912442fed541c8d3a207ce71bbeb9569a32d1 (diff) | |
download | redmine-4c51d637616af48169d55970138f98e9db3a707d.tar.gz redmine-4c51d637616af48169d55970138f98e9db3a707d.zip |
remove unused project setting wiki tab erb (#26579)
git-svn-id: http://svn.redmine.org/redmine/trunk@17017 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/projects/settings/_wiki.html.erb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/app/views/projects/settings/_wiki.html.erb b/app/views/projects/settings/_wiki.html.erb deleted file mode 100644 index 8374abb3d..000000000 --- a/app/views/projects/settings/_wiki.html.erb +++ /dev/null @@ -1,19 +0,0 @@ -<%= labelled_form_for @wiki, - :as => :wiki, - :url => { :controller => 'wikis', :action => 'edit', :id => @project }, - :remote => true, :method => 'post' do |f| %> - -<%= error_messages_for 'wiki' %> - -<div class="box tabular"> -<p><%= f.text_field :start_page, :size => 60, :required => true %> -<em class="info"><%= 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 %> |