##// END OF EJS Templates
Added line under tracker name to make clear what is going on here...
Added line under tracker name to make clear what is going on here Partially implements the patch given in r730 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1273 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1116:4155c97222ce
r1258:93a33c62862d
Show More
_list_simple.rhtml
28 lines | 1018 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _list_simple.rhtml
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? %>
<% form_tag({}) do %>
<table class="list issues">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <thead><tr>
<th>#</th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
</tr></thead>
<tbody>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% for issue in issues %>
Jean-Philippe Lang
Issue context menu now also available on 'My page'....
r916 <tr id="issue-<%= issue.id %>" class="issue hascontextmenu <%= cycle('odd', 'even') %> <%= "status-#{issue.status.position} priority-#{issue.priority.position}" %>">
Jean-Philippe Lang
Sligth changes on my page issue tables and wiki history, changesets tables....
r797 <td class="id">
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 <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
Jean-Philippe Lang
Sligth changes on my page issue tables and wiki history, changesets tables....
r797 </td>
Jean-Philippe Lang
Project name format limitation removed (name can now contain any character)....
r936 <td><%=h issue.project.name %> - <%= issue.tracker.name %><br />
Jean-Philippe Lang
Issue context menu now also available on 'My page'....
r916 <%= issue.status.name %> - <%= format_time(issue.updated_on) %></td>
<td class="subject">
<%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 </td>
</tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </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 %>
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 <p class="nodata"><%= l(:label_no_data) %></p>
<% end %>