##// END OF EJS Templates
Trunk version changed to 0.6.devel...
Trunk version changed to 0.6.devel git-svn-id: http://redmine.rubyforge.org/svn/trunk@1021 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r936:92a23c05bb71
r1008:959502970981
Show More
_list_simple.rhtml
24 lines | 876 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _list_simple.rhtml
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% if issues.length > 0 %>
<table class="list">
<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
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>
<% else %>
<i><%=l(:label_no_data)%></i>
Jean-Philippe Lang
Initial commit...
r2 <% end %>