]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/relation_history.rhtml
f4b3e1faacf353acd019c97f1a6cfdfedbd70cec
[rails.git] / app / views / browse / relation_history.rhtml
1 <h2>Relation History: <%= h(@name) %></h2>
2
3 <table width="100%">
4   <tr valign="top">
5     <td>
6       <% @relation.old_relations.reverse.each do |relation| %>
7         <%= render :partial => "relation_details", :object => relation %>
8         <hr />
9       <% end %>
10       <%= link_to "Download XML", :controller => "old_relation", :action => "history" %>
11       or
12       <%= link_to "view details", :action => "relation" %>
13     </td>
14     <td align="right">
15       <% if @relation.visible %>
16         <%= render :partial => "map", :locals => { :type => "relation", :id => @relation.id } %>
17       <% else %>
18         Deleted
19       <% end %>
20     </td>
21   </tr>
22 </table>