X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a8f14fb509ba36192744bd194ac278c7edf9f6ab..8e21e4e80156a1fc29d7b283b254ff623ca844b6:/app/views/browse/changeset.html.erb
diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb
index fcdc8f155..ee8eee66e 100644
--- a/app/views/browse/changeset.html.erb
+++ b/app/views/browse/changeset.html.erb
@@ -18,54 +18,41 @@
<% if current_user %>
<% if @changeset.subscribers.exists?(current_user.id) %>
-
+
<% else %>
-
+
<% end %>
<% end %>
<% if @comments.length > 0 %>
-
+
+
+ <%= comment.body.to_html %>
+
+
+ <% end %>
+
<% end %>
<% unless current_user %>
-
+
<%= link_to(t(".join_discussion"), login_path(:referer => request.fullpath)) %>
<% end %>
@@ -79,11 +66,11 @@
- " data-changeset-id="<%= @changeset.id %>" data-method="POST" data-url="<%= changeset_comment_url(@changeset) %>" disabled="1" class="btn btn-sm btn-primary" />
+
<% else %>
-
+
<%= t(".still_open") %>
<% end %>
@@ -93,11 +80,11 @@
<%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("way", @way_pages), :pages => @way_pages, :page_param => "way_page" } %>
<% @ways.each do |way| %>
- - ">
- <%= element_strikethrough way do %>
- <%= link_to printable_name(way, :version => true), { :action => "way", :id => way.way_id.to_s }, { :title => link_title(way) } %>
- <% end %>
-
+ <%= element_list_item "way", way do %>
+ <%= t "printable_name.current_and_old_links_html",
+ :current_link => link_to(printable_element_name(way), way_path(way.way_id)),
+ :old_link => link_to(printable_element_version(way), old_way_path(way.way_id, way.version)) %>
+ <% end %>
<% end %>
<% end %>
@@ -106,11 +93,11 @@
<%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("relation", @relation_pages), :pages => @relation_pages, :page_param => "relation_page" } %>
<% @relations.each do |relation| %>
- - ">
- <%= element_strikethrough relation do %>
- <%= link_to printable_name(relation, :version => true), { :action => "relation", :id => relation.relation_id.to_s }, { :title => link_title(relation) } %>
- <% end %>
-
+ <%= element_list_item "relation", relation do %>
+ <%= t "printable_name.current_and_old_links_html",
+ :current_link => link_to(printable_element_name(relation), relation_path(relation.relation_id)),
+ :old_link => link_to(printable_element_version(relation), old_relation_path(relation.relation_id, relation.version)) %>
+ <% end %>
<% end %>
<% end %>
@@ -119,11 +106,11 @@
<%= render :partial => "paging_nav", :locals => { :heading => type_and_paginated_count("node", @node_pages), :pages => @node_pages, :page_param => "node_page" } %>
<% @nodes.each do |node| %>
- - ">
- <%= element_strikethrough node do %>
- <%= link_to printable_name(node, :version => true), { :action => "node", :id => node.node_id.to_s }, { :title => link_title(node), :rel => link_follow(node) } %>
- <% end %>
-
+ <%= element_list_item "node", node do %>
+ <%= t "printable_name.current_and_old_links_html",
+ :current_link => link_to(printable_element_name(node), node_path(node.node_id), { :rel => link_follow(node) }),
+ :old_link => link_to(printable_element_version(node), old_node_path(node.node_id, node.version), { :rel => link_follow(node) }) %>
+ <% end %>
<% end %>
<% end %>