% 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? %>
    
  <% end %>
  <% unless current_user %>
    
      <%= link_to(t(".join_discussion"), login_path(:referer => request.fullpath)) %>
    
  <% end %>
  <% if current_user %>
    <% unless @changeset.open? %>
      
    <% 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 %>