X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c1b5ae0aa08be555588de8098b5ea8319f4c7925..356738e5c502b6907864ac1f0fed23bbbb5780c0:/app/views/changesets/show.html.erb
diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb
index 57a3fdb56..a47049e99 100644
--- a/app/views/changesets/show.html.erb
+++ b/app/views/changesets/show.html.erb
@@ -3,7 +3,7 @@
<%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
-
+
<%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>
<%= changeset_details(@changeset) %>
@@ -18,9 +18,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 +39,13 @@
<% @comments.each do |comment| %>
<% next unless comment.visible || current_user&.moderator? %>
@@ -125,7 +111,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 +121,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 %>