##// END OF EJS Templates
scm: add Japanese i18n text of scm commands of config/configuration.yml in administrator panel (#4273)....
scm: add Japanese i18n text of scm commands of config/configuration.yml in administrator panel (#4273). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5953 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5144:b12994e12ee3
r5833:0148ef5a04a2
Show More
edit.rhtml
50 lines | 2.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Adds workflow copy functionality (#1727)....
r3040 <%= render :partial => 'action_menu' %>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_workflow)%></h2>
<p><%=l(:text_workflow_edit)%>:</p>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <% form_tag({}, :method => 'get') do %>
Jean-Philippe Lang
Cleaning workflow edit view....
r3033 <p>
<label><%=l(:label_role)%>:</label>
<%= select_tag 'role_id', options_from_collection_for_select(@roles, "id", "name", @role && @role.id) %>
<label><%=l(:label_tracker)%>:</label>
<%= select_tag 'tracker_id', options_from_collection_for_select(@trackers, "id", "name", @tracker && @tracker.id) %>
Jean-Philippe Lang
By default, only show statuses that are used by the tracker on the workflow edit view....
r3074
<%= hidden_field_tag 'used_statuses_only', '0' %>
<label><%= check_box_tag 'used_statuses_only', '1', @used_statuses_only %> <%= l(:label_display_used_statuses_only) %></label>
</p>
<p>
<%= submit_tag l(:button_edit), :name => nil %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </p>
<% end %>
Jean-Philippe Lang
Cleaning workflow edit view....
r3033 <% if @tracker && @role && @statuses.any? %>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 <% form_tag({}, :id => 'workflow_form' ) do %>
<%= hidden_field_tag 'tracker_id', @tracker.id %>
<%= hidden_field_tag 'role_id', @role.id %>
<div class="autoscroll">
<%= render :partial => 'form', :locals => {:name => 'always', :workflows => @workflows['always']} %>
<fieldset class="collapsible" style="padding: 0; margin-top: 0.5em;">
Jean-Philippe Lang
Removed hard coded french strings (#8020)....
r5144 <legend onclick="toggleFieldset(this);"><%= l(:label_additional_workflow_transitions_for_author) %></legend>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 <div id="author_workflows" style="margin: 0.5em 0 0.5em 0;">
<%= render :partial => 'form', :locals => {:name => 'author', :workflows => @workflows['author']} %>
</div>
</fieldset>
<%= javascript_tag "hideFieldset($('author_workflows'))" unless @workflows['author'].present? %>
<fieldset class="collapsible" style="padding: 0;">
Jean-Philippe Lang
Removed hard coded french strings (#8020)....
r5144 <legend onclick="toggleFieldset(this);"><%= l(:label_additional_workflow_transitions_for_assignee) %></legend>
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 <div id="assignee_workflows" style="margin: 0.5em 0 0.5em 0;">
<%= render :partial => 'form', :locals => {:name => 'assignee', :workflows => @workflows['assignee']} %>
</div>
</fieldset>
<%= javascript_tag "hideFieldset($('assignee_workflows'))" unless @workflows['assignee'].present? %>
</div>
<%= submit_tag l(:button_save) %>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
More detailed html title on several views....
r951
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_workflow)) -%>