##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14686:7467c145c03c
r14954:42b5c332b2c2
Show More
info.html.erb
18 lines | 534 B | text/plain | TextLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h2><%=l(:label_information_plural)%></h2>
Jean-Philippe Lang
Adds environment information display to /admin/info....
r9420 <p><strong><%= Redmine::Info.versioned_name %></strong></p>
Jean-Philippe Lang
added some diagnostic information on admin/info...
r356
<table class="list">
Jean-Philippe Lang
Admin info cleanup....
r3086 <% @checklist.each do |label, result| %>
Toshi MARUYAMA
code clean up app/views/admin/info.rhtml....
r5442 <tr class="<%= cycle 'odd', 'even' %>">
Jean-Philippe Lang
Adds path to plugin_assets directory in admin/info (#8817)....
r13107 <td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td>
Jean-Philippe Lang
Replace uses of image_tag() with CSS (#21256)....
r14686 <td class="tick"><span class="icon-only <%= (result ? 'icon-ok' : 'icon-error') %>"></span></td>
Toshi MARUYAMA
code clean up app/views/admin/info.rhtml....
r5442 </tr>
Jean-Philippe Lang
Admin info cleanup....
r3086 <% end %>
Jean-Philippe Lang
added some diagnostic information on admin/info...
r356 </table>
Jean-Philippe Lang
Adds environment information display to /admin/info....
r9420 <br />
<div class="box">
<pre><%= Redmine::Info.environment %></pre>
</div>
Jean-Philippe Lang
Basic plugin support....
r741
Jean-Philippe Lang
Slight improvements to the browser views....
r1019 <% html_title(l(:label_information_plural)) -%>