##// END OF EJS Templates
Removes duplicate ids (#15485)....
Removes duplicate ids (#15485). git-svn-id: http://svn.redmine.org/redmine/trunk@12655 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12038:967564cba0bd
r12380:d3106af830b0
Show More
index.html.erb
33 lines | 845 B | text/plain | TextLexer
Jean-Philippe Lang
Adds missing html titles (#14517)....
r11820 <%= title [l(:label_workflow), workflows_edit_path], l(:field_summary) %>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912
<% if @workflow_counts.empty? %>
<p class="nodata"><%= l(:label_no_data) %></p>
<% else %>
Jean-Philippe Lang
Fixed: Layout problem in workflow overview (#6990)....
r4314 <div class="autoscroll">
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <table class="list">
<thead>
<tr>
<th></th>
<% @workflow_counts.first.last.each do |role, count| %>
<th>
<%= content_tag(role.builtin? ? 'em' : 'span', h(role.name)) %>
</th>
Toshi MARUYAMA
remove trailing white-spaces from app/views/workflows/index.rhtml....
r6561
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <% end %>
</tr>
</thead>
<tbody>
<% @workflow_counts.each do |tracker, roles| -%>
<tr class="<%= cycle('odd', 'even') %>">
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td class="name"><%= h tracker %></td>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <% roles.each do |role, count| -%>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td>
Jean-Philippe Lang
Fixed: Workflow summary shows X icon for workflow with exactly 1 status transition (#7611)....
r4770 <%= link_to((count > 0 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 </td>
<% end -%>
</tr>
<% end -%>
</tbody>
</table>
Jean-Philippe Lang
Fixed: Layout problem in workflow overview (#6990)....
r4314 </div>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <% end %>