##// END OF EJS Templates
Fixed version field on issue view page now links to the corresponding version in the roadmap....
Fixed version field on issue view page now links to the corresponding version in the roadmap. git-svn-id: http://redmine.rubyforge.org/svn/trunk@562 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r330:027bf93849e8
r559:2dbb3978184e
Show More
list.rhtml
18 lines | 554 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
added svn:eol-style native property on /app files...
r330 <% Enumeration::OPTIONS.each do |option, name| %>
<% if params[:opt]==option %>
<h3><%= l(name) %></h3>
<ul>
<% for value in Enumeration.find(:all, :conditions => ["opt = ?", option]) %>
<li><%= link_to value.name, :action => 'edit', :id => value %></li>
<% end %>
</ul>
<p><%= link_to l(:label_enumeration_new), { :action => 'new', :opt => option }, :class => "icon icon-add" %></p>&nbsp;
<% else %>
<h3><%= link_to l(name), :opt => option %></h3>
<% end %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <% end %>