X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/060494b09cac2e12bbcf9695be8681110bff0868..8a020b3ec727b8c9fa4d819855469dd348e58ee7:/app/views/notes/show.html.erb
diff --git a/app/views/notes/show.html.erb b/app/views/notes/show.html.erb
index 4aa2e7fd3..8dda65c25 100644
--- a/app/views/notes/show.html.erb
+++ b/app/views/notes/show.html.erb
@@ -28,6 +28,32 @@
+
+
<%= t(".discussion") %>
+
+
+ <% if current_user %>
+
+ <% if @note.subscribers.exists?(current_user.id) %>
+ <%= tag.button t(".unsubscribe"),
+ :type => "button",
+ :class => "btn btn-sm btn-primary",
+ :name => "unsubscribe",
+ :data => { :method => "DELETE",
+ :url => api_note_subscription_path(@note) } %>
+ <% else %>
+ <%= tag.button t(".subscribe"),
+ :type => "button",
+ :class => "btn btn-sm btn-primary",
+ :name => "subscribe",
+ :data => { :method => "POST",
+ :url => api_note_subscription_path(@note) } %>
+ <% end %>
+
+ <% end %>
+
+
<% if @note_comments.length > 1 %>