##// END OF EJS Templates
fixed french issue_edit mail template...
fixed french issue_edit mail template git-svn-id: http://redmine.rubyforge.org/svn/trunk@203 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r181:845460b16525
r200:18fd46ab6b9b
Show More
change_status.rhtml
37 lines | 1.3 KiB | text/html+ruby | RhtmlLexer
/ app / views / issues / change_status.rhtml
Jean-Philippe Lang
various modifications to prevent xss...
r96 <h2><%=l(:label_issue)%> #<%= @issue.id %>: <%=h @issue.subject %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
improved issues change history...
r52 <%= error_messages_for 'issue' %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% form_tag({:action => 'change_status', :id => @issue}, :class => "tabular") do %>
Jean-Philippe Lang
Initial commit...
r2
<%= hidden_field_tag 'confirm', 1 %>
Jean-Philippe Lang
improved issues change history...
r52 <%= hidden_field_tag 'new_status_id', @new_status.id %>
Jean-Philippe Lang
0.3 unstable...
r10
<div class="box">
Jean-Philippe Lang
improved issues change history...
r52 <p><label><%=l(:label_issue_status_new)%></label> <%= @new_status.name %></p>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="issue_assigned_to_id"><%=l(:field_assigned_to)%></label>
Jean-Philippe Lang
Initial commit...
r2 <select name="issue[assigned_to_id]">
<option value=""></option>
<%= options_from_collection_for_select @assignable_to, "id", "display_name", @issue.assigned_to_id %></p>
</select></p>
Jean-Philippe Lang
* new report: project activity...
r42
<p><label for="issue_done_ratio"><%=l(:field_done_ratio)%></label>
<%= select("issue", "done_ratio", ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) ) %>
</select></p>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="issue_fixed_version"><%=l(:field_fixed_version)%></label>
Jean-Philippe Lang
Initial commit...
r2 <select name="issue[fixed_version_id]">
<option value="">--none--</option>
<%= options_from_collection_for_select @issue.project.versions, "id", "name", @issue.fixed_version_id %>
Jean-Philippe Lang
improved issues change history...
r52 </select></p>
Jean-Philippe Lang
data locking for issues...
r21
Jean-Philippe Lang
improved issues change history...
r52 <p><label for="notes"><%= l(:field_notes) %></label>
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10 %></p>
</div>
Jean-Philippe Lang
data locking for issues...
r21 <%= hidden_field 'issue', 'lock_version' %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= submit_tag l(:button_save) %>
Jean-Philippe Lang
deprecated start_form_tag replaced by form_tag...
r181 <% end %>