##// END OF EJS Templates
replace shoulder "with a due_date attribute" context of unit IssuesHelperTest and use with_settings...
replace shoulder "with a due_date attribute" context of unit IssuesHelperTest and use with_settings git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10263 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9420:785825900a37
r10080:8eb39d682d1c
Show More
info.html.erb
19 lines | 548 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' %>">
<td><%= l(label) %></td>
<td width="30px"><%= image_tag((result ? 'true.png' : 'exclamation.png'),
:style => "vertical-align:bottom;") %></td>
</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)) -%>