summaryrefslogtreecommitdiff
path: root/web/views/reports/index.erb
blob: 2d2adbce9592256bd5808072c8a3d12ad88d07b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="pre">
    <h1 class="section"><%= h(t.taginfo.reports) %></h1>
    <p><%= h(t.pages.reports.intro) %></p>
</div>
<div class="box resize">
    <h2><%= h(t.pages.reports.list) %></h2>
    <ul>
<% Report.each_visible_with_index do |report, n| c = (n%2!=0) ? ' even' : '' %>
        <li><a href="<%= report.url %>"><%= h(t.reports[report.name].name) %></a></li>
<% end %>
    </ul>
</div>