##// END OF EJS Templates
Applies the same style to the admin project tree than issues....
Applies the same style to the admin project tree than issues. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3621 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2616:f90b85f8be94
r3507:ce549933c8ab
Show More
_list_simple.rhtml
29 lines | 1.0 KiB | 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>
Jean-Philippe Lang
Slight changes to the issue lists displayed on My page....
r2390 <th><%=l(:field_project)%></th>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <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
Adds more css classes to the roadmap issues (#3214)....
r2602 <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %>">
Jean-Philippe Lang
Sligth changes on my page issue tables and wiki history, changesets tables....
r797 <td class="id">
Jean-Philippe Lang
Slight changes to the issue lists displayed on My page....
r2390 <%= 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>
Eric Davis
Link the project name in simple issue lists....
r2616 <td class="project"><%= link_to(h(issue.project), :controller => 'projects', :action => 'show', :id => issue.project) %></td>
Jean-Philippe Lang
Slight changes to the issue lists displayed on My page....
r2390 <td class="tracker"><%=h issue.tracker %></td>
Jean-Philippe Lang
Issue context menu now also available on 'My page'....
r916 <td class="subject">
Jean-Philippe Lang
Deprecated truncate call....
r2432 <%= link_to h(truncate(issue.subject, :length => 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>)
Jean-Philippe Lang
Slight changes to the issue lists displayed on My page....
r2390 </td>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 </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 %>