##// END OF EJS Templates
Diff style (inline or side by side) automatically saved as a user preference....
Diff style (inline or side by side) automatically saved as a user preference. Fixed a Postgres test failure. git-svn-id: http://redmine.rubyforge.org/svn/trunk@893 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r427:14314b77ee9f
r880:1454a711caf6
Show More
list.rhtml
32 lines | 1.7 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
contextual links redesign...
r90 <div class="contextual">
Jean-Philippe Lang
* all icons replaced (new icons are based on GPL icon set: "KDE Crystal Diamond 2.5" -by paolino- and "kNeu! Alpha v0.1" -by Pablo Fabregat-)...
r154 <%= link_to l(:label_tracker_new), {:action => 'new'}, :class => 'icon icon-add' %>
Jean-Philippe Lang
contextual links redesign...
r90 </div>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_tracker_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <th><%=l(:label_tracker)%></th>
Jean-Philippe Lang
Added a warning message on tracker list for trackers that don't have any workflow defined....
r427 <th></th>
Jean-Philippe Lang
added the ability to set the sort order for trackers...
r206 <th><%=l(:button_sort)%></th>
Jean-Philippe Lang
Initial commit...
r2 <th></th>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
Initial commit...
r2 <% for tracker in @trackers %>
Jean-Philippe Lang
v0.2.0...
r5 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Initial commit...
r2 <td><%= link_to tracker.name, :action => 'edit', :id => tracker %></td>
Jean-Philippe Lang
Added a warning message on tracker list for trackers that don't have any workflow defined....
r427 <td align="center"><% unless tracker.workflows.count > 0 %><span class="icon icon-warning"><%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), {:controller => "roles", :action => "workflow", :tracker_id => tracker} %>)</span><% end %></td>
Jean-Philippe Lang
Applied the same column width in different similar views....
r400 <td align="center" style="width:15%;">
Jean-Philippe Lang
added the ability to set the sort order for trackers...
r206 <%= link_to image_tag('2uparrow.png', :alt => l(:label_sort_highest)), {:action => 'move', :id => tracker, :position => 'highest'}, :method => :post, :title => l(:label_sort_highest) %>
<%= link_to image_tag('1uparrow.png', :alt => l(:label_sort_higher)), {:action => 'move', :id => tracker, :position => 'higher'}, :method => :post, :title => l(:label_sort_higher) %> -
<%= link_to image_tag('1downarrow.png', :alt => l(:label_sort_lower)), {:action => 'move', :id => tracker, :position => 'lower'}, :method => :post, :title => l(:label_sort_lower) %>
<%= link_to image_tag('2downarrow.png', :alt => l(:label_sort_lowest)), {:action => 'move', :id => tracker, :position => 'lowest'}, :method => :post, :title => l(:label_sort_lowest) %>
</td>
Jean-Philippe Lang
Applied the same column width in different similar views....
r400 <td align="center" style="width:10%;">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= button_to l(:button_delete), { :action => 'destroy', :id => tracker }, :confirm => l(:text_are_you_sure), :class => "button-small" %>
Jean-Philippe Lang
Initial commit...
r2 </td>
</tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
Initial commit...
r2 </table>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
contextual links redesign...
r90 <%= pagination_links_full @tracker_pages %>