X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/691289bfc0f632120b7733187b152a266fd9f88b..1f1a20e5399d957c8f45a36d5d880aac84a95d3f:/app/views/changesets/show.html.erb?ds=sidebyside
diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb
index b9589f9ca..702e61f92 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 %>
@@ -32,12 +42,12 @@
<% next unless comment.visible || current_user&.moderator? %>
- <%= link_to(t(".changesetxml"), :controller => "api/changesets", :action => "show") %>
+ <%= link_to t(".changesetxml"), api_changeset_path(@changeset) %>
·
<%= link_to(t(".osmchangexml"), :controller => "api/changesets", :action => "download") %>