X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ba2c75641d3de82fc4cda78dc864dc690b860b6d..8e21e4e80156a1fc29d7b283b254ff623ca844b6:/app/views/browse/changeset.html.erb
diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb
index d2ccff44d..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 %>
@@ -94,7 +81,9 @@
<% @ways.each do |way| %>
<%= element_list_item "way", way do %>
- <%= link_to printable_name(way, :version => true), { :action => "way", :id => way.way_id.to_s } %>
+ <%= 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 %>
@@ -105,7 +94,9 @@
<% @relations.each do |relation| %>
<%= element_list_item "relation", relation do %>
- <%= link_to printable_name(relation, :version => true), { :action => "relation", :id => relation.relation_id.to_s } %>
+ <%= 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 %>
@@ -116,7 +107,9 @@
<% @nodes.each do |node| %>
<%= element_list_item "node", node do %>
- <%= link_to printable_name(node, :version => true), { :action => "node", :id => node.node_id.to_s }, { :rel => link_follow(node) } %>
+ <%= 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 %>