To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / issue_statuses / _form.html.erb @ 912:5e80956cc792

History | View | Annotate | Download (480 Bytes)

1 0:513646585e45 Chris
<%= error_messages_for 'issue_status' %>
2
3 909:cbb26bc654de Chris
<div class="box tabular">
4
<p><%= f.text_field :name, :required => true %></p>
5 0:513646585e45 Chris
<% if Issue.use_status_for_done_ratio? %>
6 909:cbb26bc654de Chris
  <p><%= f.select :default_done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }), :include_blank => true, :label => :field_done_ratio %></p>
7 0:513646585e45 Chris
<% end %>
8 909:cbb26bc654de Chris
<p><%= f.check_box :is_closed %></p>
9
<p><%= f.check_box :is_default %></p>
10 0:513646585e45 Chris
11
<%= call_hook(:view_issue_statuses_form, :issue_status => @issue_status) %>
12
</div>