##// END OF EJS Templates
Skip workflow creation in tests for each locale....
Skip workflow creation in tests for each locale. git-svn-id: http://svn.redmine.org/redmine/trunk@16115 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15670:49fcec80b7eb
r15733:f2bf5aa25c48
Show More
index.html.erb
38 lines | 1.2 KiB | text/plain | TextLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
Resourcified issue statuses....
r7770 <%= link_to l(:label_issue_status_new), new_issue_status_path, :class => 'icon icon-add' %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= link_to(l(:label_update_issue_done_ratios), update_issue_done_ratio_issue_statuses_path, :class => 'icon icon-multiple', :method => 'post', :data => {:confirm => l(:text_are_you_sure)}) if Issue.use_status_for_done_ratio? %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_issue_status_plural)%></h2>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issue_statuses/index.html.erb....
r6219
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <table class="list issue_statuses">
Jean-Philippe Lang
css cleaning...
r105 <thead><tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_status)%></th>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_status_for_done_ratio? %>
<th><%=l(:field_done_ratio)%></th>
<% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:field_is_closed)%></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issue_statuses/index.html.erb....
r6219 <tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for status in @issue_statuses %>
Jean-Philippe Lang
Reverts r16051 and r16050 for now (#15361)....
r15670 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td class="name"><%= link_to status.name, edit_issue_status_path(status) %></td>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% if Issue.use_status_for_done_ratio? %>
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <td><%= status.default_done_ratio %></td>
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 <% end %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td><%= checked_image status.is_closed? %></td>
Jean-Philippe Lang
Makes 'delete links' the same on admin views....
r2758 <td class="buttons">
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954 <%= reorder_handle(status) %>
Jean-Philippe Lang
Deprecated :confirm => 'Text' option....
r9754 <%= delete_link issue_status_path(status) %>
Jean-Philippe Lang
Initial commit...
r2 </td>
</tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_issue_status_plural)) -%>
Jean-Philippe Lang
Lists can be reordered with drag and drop (#12909)....
r14954
<%= javascript_tag do %>
$(function() { $("table.issue_statuses tbody").positionedItems(); });
<% end %>