##// END OF EJS Templates
Fixes row background for alternate theme (#15361)....
Fixes row background for alternate theme (#15361). git-svn-id: http://svn.redmine.org/redmine/trunk@16250 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15867:9814dcf231b5
r15868:8d713ae6ca64
Show More
_list_simple.html.erb
29 lines | 1.0 KiB | text/plain | TextLexer
/ app / views / issues / _list_simple.html.erb
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% if issues && issues.any? %>
Jean-Philippe Lang
Don't use a global variable for storing context menu URL....
r15554 <%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %>
Jean-Philippe Lang
Use fixed layout and move status to its own column....
r15547 <table class="list list-simple issues">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 <thead><tr>
Jean-Philippe Lang
Use fixed layout and move status to its own column....
r15547 <th class="id">#</th>
<th class="project"><%=l(:field_project)%></th>
<th class="status"><%=l(:field_status)%></th>
<th class="subject"><%=l(:field_subject)%></th>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 </tr></thead>
<tbody>
<% for issue in issues %>
Jean-Philippe Lang
Use css pseudo-classes instead of cycle("odd", "even") (#15361)....
r15867 <tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= issue.css_classes %>">
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 <td class="id">
Jean-Philippe Lang
Do not generate duplicate ids....
r8447 <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %>
Jean-Philippe Lang
Use fixed layout and move status to its own column....
r15547 <%= link_to("#{issue.tracker} ##{issue.id}", issue_path(issue)) %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 </td>
<td class="project"><%= link_to_project(issue.project) %></td>
Jean-Philippe Lang
Use fixed layout and move status to its own column....
r15547 <td class="status"><%= issue.status %></td>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 <td class="subject">
Jean-Philippe Lang
Use fixed layout and move status to its own column....
r15547 <span><%= link_to(issue.subject, issue_path(issue)) %></span>
Jean-Philippe Lang
Slight changes to the issue lists displayed on My page....
r2390 </td>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 </tr>
<% end %>
</tbody>
</table>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% else %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 <p class="nodata"><%= l(:label_no_data) %></p>
Jean-Philippe Lang
Issue list now supports bulk edit/move/delete (#563, #607). For now, issues from different projects can not be bulk edited/moved/deleted at once....
r1116 <% end %>