##// END OF EJS Templates
added the ability to set the sort order for trackers...
added the ability to set the sort order for trackers git-svn-id: http://redmine.rubyforge.org/svn/trunk@209 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r154:220641909ca6
r206:fa688d48e673
Show More
list.rhtml
18 lines | 570 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_enumerations)%></h2>
Jean-Philippe Lang
enumerations/list redesign...
r136 &nbsp;
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% Enumeration::OPTIONS.each do |option, name| %>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
replaced deprecated controller instance variables: @params, @session, @request...
r124 <% if params[:opt]==option %>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
enumerations/list redesign...
r136 <h3><%= l(name) %></h3>
Jean-Philippe Lang
Initial commit...
r2 <ul>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% for value in Enumeration.find(:all, :conditions => ["opt = ?", option]) %>
Jean-Philippe Lang
Initial commit...
r2 <li><%= link_to value.name, :action => 'edit', :id => value %></li>
<% end %>
</ul>
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 <p><%= link_to l(:label_enumeration_new), { :action => 'new', :opt => option }, :class => "icon icon-add" %></p>&nbsp;
Jean-Philippe Lang
Initial commit...
r2
<% else %>
Jean-Philippe Lang
enumerations/list redesign...
r136 <h3><%= link_to l(name), :opt => option %></h3>
Jean-Philippe Lang
Initial commit...
r2 <% end %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% end %>