<% set_title(t(".title", :id => @changeset.id)) %> <%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>

<%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>

<%= tag.p :class => "details", :data => { :changeset => changeset_data(@changeset) } do %> <%= changeset_details(@changeset) %> <% end %> <%= render :partial => "browse/tag_details", :object => @changeset.tags.except("comment") %>

<%= t(".discussion") %>

<% if current_user %>
<% if @changeset.subscribers.exists?(current_user.id) %> <%= tag.button t(".unsubscribe"), :class => "btn btn-sm btn-primary", :name => "unsubscribe", :data => { :method => "DELETE", :url => api_changeset_subscription_path(@changeset) } %> <% else %> <%= tag.button t(".subscribe"), :class => "btn btn-sm btn-primary", :name => "subscribe", :data => { :method => "POST", :url => api_changeset_subscription_path(@changeset) } %> <% end %>
<% end %>
<% @comments.each do |comment| %> <% next unless comment.visible || current_user&.moderator? %>
<%= comment_by_options = { :time_ago => friendly_date_ago(comment.created_at), :user => link_to(comment.author.display_name, comment.author) } comment.visible ? t(".comment_by_html", **comment_by_options) : t(".hidden_comment_by_html", **comment_by_options) %> <% if current_user&.moderator? %> — <%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"), :class => "btn btn-sm small btn-link link-secondary p-0 align-baseline", :data => { :method => comment.visible ? "DELETE" : "POST", :url => api_changeset_comment_visibility_path(comment) } %> <% end %>
<%= comment.body.to_html %>
<% end %> <% unless current_user %>

<%= link_to(t(".join_discussion"), login_path(:referer => request.fullpath)) %>

<% end %> <% if current_user %> <% unless @changeset.open? %>
<%= tag.button t(".comment"), :class => "btn btn-primary", :name => "comment", :disabled => true, :data => { :method => "POST", :url => api_changeset_changeset_comments_path(@changeset) } %>
<% else %>

<%= t(".still_open") %>

<% end %> <% end %> <% unless @ways.empty? %> <%= render :partial => "elements", :locals => { :type => "way", :elements => @ways, :pages => @way_pages } %> <% end %> <% unless @relations.empty? %> <%= render :partial => "elements", :locals => { :type => "relation", :elements => @relations, :pages => @relation_pages } %> <% end %> <% unless @nodes.empty? %> <%= render :partial => "elements", :locals => { :type => "node", :elements => @nodes, :pages => @node_pages } %> <% end %>
<%= link_to t(".changesetxml"), api_changeset_path(@changeset) %> · <%= link_to t(".osmchangexml"), api_changeset_download_path(@changeset) %>
<% if @next_by_user || @prev_by_user %>
<% if @prev_by_user %> <%= link_to @prev_by_user, :class => "icon-link" do %> <%= previous_page_svg_tag :height => 11 %> <%= @prev_by_user.id %> <% end %> · <% end %> <%= user = (@prev_by_user || @next_by_user).user.display_name link_to tag.bdi(user), :controller => "changesets", :action => "index", :display_name => user %> <% if @next_by_user %> · <%= link_to @next_by_user, :class => "icon-link" do %> <%= @next_by_user.id %> <%= next_page_svg_tag :height => 11 %> <% end %> <% end %>
<% end %>