##// END OF EJS Templates
The ability to change the issue status to the same status is no longer forced....
The ability to change the issue status to the same status is no longer forced. This behaviour can be defined in workflow setup. git-svn-id: http://redmine.rubyforge.org/svn/trunk@470 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r330:027bf93849e8
r467:feb973b97052
Show More
special_page_index.rhtml
12 lines | 504 B | text/html+ruby | RhtmlLexer
/ app / views / wiki / special_page_index.rhtml
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
<% unless @pages.empty? %>
<%= l(:label_export_to) %> <%= link_to 'HTML', {:action => 'special', :page => 'export'}, :class => 'icon icon-html' %>
<% end %>
</div>
<h2><%= l(:label_page_index) %></h2>
<% if @pages.empty? %><p><i><%= l(:label_no_data) %></i></p><% end %>
<ul><% @pages.each do |page| %>
<li><%= link_to page.pretty_title, :action => 'index', :page => page.title %> -
<%= l(:label_last_updates) %>: <%= format_time(page.updated_on) %></li>
Jean-Philippe Lang
wiki branch merged into trunk...
r320 <% end %></ul>