##// END OF EJS Templates
updated css for online help...
updated css for online help git-svn-id: http://redmine.rubyforge.org/svn/trunk@204 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r105:d3600e729fbc
r201:d29ba0b80fac
Show More
_list_simple.rhtml
24 lines | 799 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _list_simple.rhtml
Jean-Philippe Lang
Initial commit...
r2 <% if issues.length > 0 %>
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <th>#</th>
<th><%=l(:field_tracker)%></th>
<th><%=l(:field_subject)%></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% for issue in issues %>
Jean-Philippe Lang
tr color removed on issues list...
r63 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
css cleaning...
r105 <th align="center">
<%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
</th>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
<%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
<td>
Jean-Philippe Lang
various modifications to prevent xss...
r96 <p class="small"><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></p>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 </td>
</tr>
Jean-Philippe Lang
css cleaning...
r105 <% end %>
</tbody>
</table>
Jean-Philippe Lang
Initial commit...
r2 <% else %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <i><%=l(:label_no_data)%></i>
Jean-Philippe Lang
Initial commit...
r2 <% end %>