summaryrefslogtreecommitdiff
path: root/web/views/reports
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2012-01-01 14:12:35 +0100
committerJochen Topf <jochen@topf.org>2012-01-01 14:12:35 +0100
commit1f939fbdd1f94b18056c05eba14d2e509a5ae32b (patch)
tree8acd37196f0abdcc03e4064452c9921890a1de93 /web/views/reports
parentf524ce8f75965b122533096472b85e9994e92808 (diff)
downloadtaginfo-1f939fbdd1f94b18056c05eba14d2e509a5ae32b.tar
taginfo-1f939fbdd1f94b18056c05eba14d2e509a5ae32b.tar.gz
Cleanup reports page a bit
Diffstat (limited to 'web/views/reports')
-rw-r--r--web/views/reports/index.erb7
1 files changed, 3 insertions, 4 deletions
diff --git a/web/views/reports/index.erb b/web/views/reports/index.erb
index fb1363e..122e5c0 100644
--- a/web/views/reports/index.erb
+++ b/web/views/reports/index.erb
@@ -2,17 +2,16 @@
<%= t.pages.reports.index.intro %>
-<table class="reports">
- <tr><th class="source" colspan="<%= Source.visible.size %>"/><%= t.pages.reports.index.data_sources %></th><th></th></tr>
+<table class="list">
+ <tr><th colspan="<%= Source.visible.size %>"/><%= t.pages.reports.index.data_sources %></th><th>Report</th></tr>
<% Report.each do |report| %>
<tr>
<% Source.visible.each do |source| %>
- <td class="source"><%= source.link_img if report.uses_source? source.id %></td>
+ <td width="35"><%= source.link_img if report.uses_source? source.id %></td>
<% end %>
<td><a href="<%= report.url %>"><%= t.reports[report.name].name %></a></td>
</tr>
<% end %>
- <tr><th class="last" colspan="<%= Source.visible.size %>"/></th><th></th></tr>
</table>