mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 09:21:12 +00:00
* Replace image_tag() with CSS classes * Create some CSS classes where necessary * Change "check all" positioned on the right in "Trackers -> Summary" and "Roles -> Permissions report" instead of left like in "Worfklow" * Add missing title attribute in a few places * Makes some lines shorter while at it Patch by Daniel Ritz. git-svn-id: http://svn.redmine.org/redmine/trunk@15068 e93f8b46-1217-0410-a6f0-8f06a7374b81
19 lines
534 B
Plaintext
19 lines
534 B
Plaintext
<h2><%=l(:label_information_plural)%></h2>
|
|
|
|
<p><strong><%= Redmine::Info.versioned_name %></strong></p>
|
|
|
|
<table class="list">
|
|
<% @checklist.each do |label, result| %>
|
|
<tr class="<%= cycle 'odd', 'even' %>">
|
|
<td class="name"><%= label.is_a?(Symbol) ? l(label) : label %></td>
|
|
<td class="tick"><span class="icon-only <%= (result ? 'icon-ok' : 'icon-error') %>"></span></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
<br />
|
|
<div class="box">
|
|
<pre><%= Redmine::Info.environment %></pre>
|
|
</div>
|
|
|
|
<% html_title(l(:label_information_plural)) -%>
|