X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/664d02982cbaa8b1223ef03047b6134ff1ffbdac..c7da54d9591a0440a1f1c480a6783061817bd0e2:/app/views/changesets/show.html.erb
diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb
index 57a3fdb56..167bcb5cb 100644
--- a/app/views/changesets/show.html.erb
+++ b/app/views/changesets/show.html.erb
@@ -3,10 +3,12 @@
<%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
-
+
<%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>
-
<%= changeset_details(@changeset) %>
+ <%= tag.p :class => "details", :data => { :changeset => changeset_data(@changeset) } do %>
+ <%= changeset_details(@changeset) %>
+ <% end %>
<%= render :partial => "browse/tag_details", :object => @changeset.tags.except("comment") %>
@@ -18,9 +20,17 @@
<% if current_user %>
<% if @changeset.subscribers.exists?(current_user.id) %>
-
+ <%= tag.button t(".unsubscribe"),
+ :class => "btn btn-sm btn-primary",
+ :name => "unsubscribe",
+ :data => { :method => "POST",
+ :url => api_changeset_unsubscribe_url(@changeset) } %>
<% else %>
-
+ <%= tag.button t(".subscribe"),
+ :class => "btn btn-sm btn-primary",
+ :name => "subscribe",
+ :data => { :method => "POST",
+ :url => api_changeset_subscribe_url(@changeset) } %>
<% end %>
<% end %>
@@ -31,13 +41,13 @@
<% @comments.each do |comment| %>
<% next unless comment.visible || current_user&.moderator? %>
@@ -125,7 +113,7 @@
<% if @next_by_user || @prev_by_user %>
<% if @prev_by_user %>
- <%= link_to({ :id => @prev_by_user.id }, :class => "icon-link") do %>
+ <%= link_to @prev_by_user, :class => "icon-link" do %>
<%= previous_page_svg_tag :height => 11 %>
<%= @prev_by_user.id %>
<% end %>
@@ -135,7 +123,7 @@
link_to tag.bdi(user), :controller => "changesets", :action => "index", :display_name => user %>
<% if @next_by_user %>
·
- <%= link_to({ :id => @next_by_user.id }, :class => "icon-link") do %>
+ <%= link_to @next_by_user, :class => "icon-link" do %>
<%= @next_by_user.id %>
<%= next_page_svg_tag :height => 11 %>
<% end %>