##// END OF EJS Templates
r18645@gaspard (orig r1887): jplang | 2008-09-20 16:07:52 +0200...
r18645@gaspard (orig r1887): jplang | 2008-09-20 16:07:52 +0200 Fixed: Roadmap crashes when a version has a due date > 2037. r18646@gaspard (orig r1888): jplang | 2008-09-21 10:54:02 +0200 Fixed: invalid effective date (eg. 99999-01-01) causes an error on version edition screen. r18647@gaspard (orig r1889): jplang | 2008-09-21 10:54:50 +0200 Fixes VersionTest class. r18648@gaspard (orig r1890): jplang | 2008-09-21 14:07:44 +0200 Fixed: login filter providing incorrect back_url for Redmine installed in sub-directory (#1900). r18649@gaspard (orig r1891): winterheart | 2008-09-21 14:31:34 +0200 de.yml from #1745, thank to Sven Schuchmann and Thomas Löber for contribution r18650@gaspard (orig r1892): winterheart | 2008-09-21 14:32:16 +0200 #1928, update for Italian language r18651@gaspard (orig r1893): jplang | 2008-09-21 14:45:22 +0200 Unescape back_url param before calling redirect_to. r18652@gaspard (orig r1894): jplang | 2008-09-21 15:28:12 +0200 Strip LDAP attribute names before saving (#1890). r18653@gaspard (orig r1895): jplang | 2008-09-21 20:45:30 +0200 Switch order of current and previous revisions in side-by-side diff (#1903). r18654@gaspard (orig r1896): jplang | 2008-09-21 22:38:36 +0200 Typo in migration 97 name (#1929). r18655@gaspard (orig r1897): winterheart | 2008-09-22 16:49:18 +0200 #1921, pt translation git-svn-id: http://redmine.rubyforge.org/svn/branches/nbc@1898 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1116:4155c97222ce
r1896:9b94342bc3ba
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 %>