summaryrefslogtreecommitdiff
path: root/web/views/sources/index.erb
blob: 2aef3e77cbea3b56275066f31a74f0b5ddc00282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<h1><%= t.taginfo.sources %></h1>

<%= t.pages.sources.index.intro %>

<table class="list">
    <tr>
        <th class="tl"><%= t.taginfo.source %></th><th><%= t.pages.sources.index.data_until %>*</th><th><%= t.pages.sources.index.last_update_run %></th>
    </tr>
<% Source.visible.each_with_index do |source, n| c = (n%2!=0) ? ' even' : '' %>
    <tr>
        <td class="<%= c %>"><%= source.name %>
        <td class="tc<%= c %>"><%= source.data_until %></td>
        <td class="tc<%= c %>"><%= source.update_start + ' ' + t.pages.sources.index.to + ' ' + source.update_end %></td>
    </tr>
<% end %>
</table>

<p style="font-size: 80%">* <%= t.pages.sources.index.data_until_explanation %></p>

<%= t.pages.sources.index.info %>