##// END OF EJS Templates
Forum list can be reordered with drag and drop (#12909)....
Forum list can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15337 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14686:7467c145c03c
r14955:fb6b565a1ec9
Show More
index.html.erb
35 lines | 939 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
Jean-Philippe Lang
Use a simple count query....
r13368 <% if @roles.empty? || @trackers.empty? %>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <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>
Jean-Philippe Lang
Use a simple count query....
r13368 <% @roles.each do |role| %>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <th>
Jean-Philippe Lang
Use a simple count query....
r13368 <%= content_tag(role.builtin? ? 'em' : 'span', role.name) %>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 </th>
<% end %>
</tr>
</thead>
<tbody>
Jean-Philippe Lang
Use a simple count query....
r13368 <% @trackers.each do |tracker| -%>
Jean-Philippe Lang
Adds a workflow overview screen....
r1912 <tr class="<%= cycle('odd', 'even') %>">
Jean-Philippe Lang
Use a simple count query....
r13368 <td class="name"><%= tracker.name %></td>
<% @roles.each do |role| -%>
<% count = @workflow_counts[[tracker.id, role.id]] || 0 %>
Jean-Philippe Lang
Removed deprecated align and width html attributes (#15307)....
r12038 <td>
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <%= link_to((count > 0 ? count : content_tag(:span, nil, :class => 'icon-only icon-not-ok')),
{: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 %>