##// 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:

r12566:70ab59354fd6
r14955:fb6b565a1ec9
Show More
_list_simple.html.erb
29 lines | 958 B | 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
Merged rails-3.2 branch....
r9346 <%= form_tag({}) do %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 <table class="list issues">
<thead><tr>
<th>#</th>
<th><%=l(:field_project)%></th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
</tr></thead>
<tbody>
<% for issue in issues %>
<tr id="issue-<%= h(issue.id) %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %>">
<td class="id">
Jean-Philippe Lang
Do not generate duplicate ids....
r8447 <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;', :id => nil) %>
Toshi MARUYAMA
code format clean up app/views/issues/_list_simple.html.erb...
r12543 <%= link_to(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>
Toshi MARUYAMA
remove unneeded h() from app/views/issues/_list_simple.html.erb...
r12540 <td class="tracker"><%= issue.tracker %></td>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/issues/_list_simple.html.erb...
r7115 <td class="subject">
Toshi MARUYAMA
Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at app/views/issues/_list_simple.html.erb...
r12566 <%= link_to(issue.subject.truncate(60), issue_path(issue)) %> (<%= issue.status %>)
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 %>