summaryrefslogtreecommitdiff
path: root/web/views/embed/key.erb
blob: e948b05481d5cb07433363b7193685a6731e2137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<% if @key == '{{{key}}}' %>
<a target="_blank" title="More information about key '<%= escape_html(@key) %>' at Taginfo" href="//taginfo.openstreetmap.org/">tag<b>info</b> [More...]</a>
<p>Statistics about the key will appear here.</p>
<% elsif @dbkey.nil? %>
<a target="_blank" title="More information about key '<%= escape_html(@key) %>' at Taginfo" href="//taginfo.openstreetmap.org/keys/?key=<%= escape(@key) %>">tag<b>info</b> [More...]</a>
<p>This key does not appear in the OSM database.</p>
<% else %>
<a target="_blank" title="More information about key '<%= escape_html(@key) %>' at Taginfo" href="//taginfo.openstreetmap.org/keys/?key=<%= escape(@key) %>">tag<b>info</b> [More...]</a>
<div class="content"><table>
    <tr>
        <td class="ft"><img src="/img/types/node.16.png" width="16" height="16" alt="Nodes" title="Nodes with key '<%= escape_html(@key) %>' in database"></td>
        <td title="Nodes with key '<%= escape_html(@key) %>' in database"><%= @dbkey['count_nodes'].to_i.to_s_with_ts %></td>
    </tr>
    <tr>
        <td class="ft"><img src="/img/types/way.16.png" width="16" height="16" alt="Ways" title="Ways with key '<%= escape_html(@key) %>' in database"></td>
        <td title="Ways with key '<%= escape_html(@key) %>' in database"><%= @dbkey['count_ways'].to_i.to_s_with_ts %></td>
    </tr>
    <tr>
        <td class="ft"><img src="/img/types/relation.16.png" width="16" height="16" alt="Relations" title="Relations with key '<%= escape_html(@key) %>' in database"></td>
        <td title="Relations with key '<%= escape_html(@key) %>' in database"><%= @dbkey['count_relations'].to_i.to_s_with_ts %></td>
    </tr>
</table></div>
<% end %>