To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 3b / 3b0de502ec8b6120c31b659193b4e6c0d564605f.svn-base @ 1298:4f746d8966dd
History | View | Annotate | Download (480 Bytes)
| 1 |
<%= error_messages_for 'issue_status' %> |
|---|---|
| 2 |
|
| 3 |
<div class="box tabular"> |
| 4 |
<p><%= f.text_field :name, :required => true %></p> |
| 5 |
<% if Issue.use_status_for_done_ratio? %> |
| 6 |
<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 |
<% end %> |
| 8 |
<p><%= f.check_box :is_closed %></p> |
| 9 |
<p><%= f.check_box :is_default %></p> |
| 10 |
|
| 11 |
<%= call_hook(:view_issue_statuses_form, :issue_status => @issue_status) %> |
| 12 |
</div> |