##// END OF EJS Templates
Feature #9808 Allow user to "change" issue status to the same status...
Feature #9808 Allow user to "change" issue status to the same status git-svn-id: http://redmine.rubyforge.org/svn/trunk@412 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r330:027bf93849e8
r409:be54cb953187
Show More
_form.rhtml
17 lines | 686 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'issue_status' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:issue_status]-->
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="issue_status_name"><%=l(:field_name)%><span class="required"> *</span></label>
Jean-Philippe Lang
Initial commit...
r2 <%= text_field 'issue_status', 'name' %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="issue_status_is_closed"><%=l(:field_is_closed)%></label>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= check_box 'issue_status', 'is_closed' %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="issue_status_is_default"><%=l(:field_is_default)%></label>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= check_box 'issue_status', 'is_default' %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="issue_status_html_color"><%=l(:field_html_color)%><span class="required"> *</span></label>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 #<%= text_field 'issue_status', 'html_color', :maxlength => 6 %></p>
Jean-Philippe Lang
Initial commit...
r2
<!--[eoform:issue_status]-->
Jean-Philippe Lang
tables and forms redesign,...
r19 </div>