##// END OF EJS Templates
Add cancel button during edition of a wiki page (#4285)....
Add cancel button during edition of a wiki page (#4285). git-svn-id: http://svn.redmine.org/redmine/trunk@14734 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13153:dfc594c33702
r14352:a371c8d850a2
Show More
_form.html.erb
11 lines | 442 B | text/plain | TextLexer
<%= error_messages_for 'issue_status' %>
<div class="box tabular">
<p><%= f.text_field :name, :required => true %></p>
<% if Issue.use_status_for_done_ratio? %>
<p><%= f.select :default_done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :include_blank => true, :label => :field_done_ratio %></p>
<% end %>
<p><%= f.check_box :is_closed %></p>
<%= call_hook(:view_issue_statuses_form, :issue_status => @issue_status) %>
</div>