X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/919021e41e7ad9ed376ef24dea39fb418639793a..80d7fe4cce0b3562a1465b7c278283ef57bb8dcf:/app/views/changesets/show.html.erb
diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb
index b9589f9ca..915b0ef35 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 %>
@@ -37,7 +45,7 @@
:user => link_to(comment.author.display_name, comment.author) %>
<% if current_user&.moderator? %>
â
- <%= tag.button t("javascripts.changesets.show.#{comment.visible ? 'hide' : 'unhide'}_comment"),
+ <%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"),
:class => "btn btn-sm small btn-link link-secondary p-0 align-baseline",
:data => { :method => "POST",
:url => comment.visible ? changeset_comment_hide_url(comment) : changeset_comment_unhide_url(comment) } %>
@@ -66,7 +74,12 @@
-
+ <%= tag.button t(".comment"),
+ :class => "btn btn-primary",
+ :name => "comment",
+ :disabled => true,
+ :data => { :method => "POST",
+ :url => changeset_comment_url(@changeset) } %>
<% else %>