-<div class='browse-section header'>
- <h2><%= t 'browse.changeset.changeset', :id => @changeset.id %></h2>
- <p>
- <%
- created_at = distance_of_time_in_words_to_now(@changeset.created_at)
- closed_at = distance_of_time_in_words_to_now(@changeset.closed_at)
- if created_at == closed_at %>
- <%= t 'browse.changeset_details.closed_at' %>
- <abbr title="<%= t 'browse.changeset_details.created_at' %>: <%= @changeset.created_at %> <%= t 'browse.changeset_details.closed_at' %>: <%= @changeset.closed_at %>">
- <%= created_at %> ago</abbr>
- <% else %>
- <%= t 'browse.changeset_details.created_at' %> <abbr title="<%= l @changeset.created_at %>"><%= created_at %> ago</abbr>,
- <%= t 'browse.changeset_details.closed_at' %> <abbr title="<%= l @changeset.closed_at %>"><%= closed_at %> ago<abbr>
- <% end %>
- <% if @changeset.user.data_public? %>
- by <%= link_to h(@changeset.user.display_name), :controller => "user", :action => "view", :display_name => @changeset.user.display_name %>
- <% end %>
+<% set_title(t(".title", :id => @changeset.id)) %>
+
+<%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
+
+<div class="browse-section">
+ <p class="fst-italic">
+ <%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>
+ </p>
+ <p class="details"><%= changeset_details(@changeset) %></p>
+
+ <%= render :partial => "tag_details", :object => @changeset.tags.except("comment") %>
+
+ <div class="row">
+ <div class="col">
+ <h4><%= t(".discussion") %></h4>
+ </div>
+
+ <% if current_user %>
+ <div class="col-auto">
+ <% if @changeset.subscribers.exists?(current_user.id) %>
+ <button class="action-button btn btn-sm btn-primary" name="unsubscribe" data-method="POST" data-url="<%= changeset_unsubscribe_url(@changeset) %>"><%= t("javascripts.changesets.show.unsubscribe") %></button>
+ <% else %>
+ <button class="action-button btn btn-sm btn-primary" name="subscribe" data-method="POST" data-url="<%= changeset_subscribe_url(@changeset) %>"><%= t("javascripts.changesets.show.subscribe") %></button>
+ <% end %>
+ </div>
+ <% end %>
+ </div>
+
+ <% if @comments.length > 0 %>
+ <div class='changeset-comments'>
+ <form action="#">
+ <ul class="list-unstyled">
+ <% @comments.each do |comment| %>
+ <% if comment.visible %>
+ <li id="c<%= comment.id %>">
+ <small class='text-muted'>
+ <%= t(".comment_by_html",
+ :time_ago => tag.abbr(friendly_date_ago(comment.created_at),
+ :title => l(comment.created_at)),
+ :user => link_to(comment.author.display_name, user_path(comment.author))) %>
+ <% if current_user and current_user.moderator? %>
+ — <span class="action-button" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_hide_url(comment.id) %>"><%= t("javascripts.changesets.show.hide_comment") %></span>
+ <% end %>
+ </small>
+ <div class="mx-2">
+ <%= comment.body.to_html %>
+ </div>
+ </li>
+ <% elsif current_user and current_user.moderator? %>
+ <li id="c<%= comment.id %>">
+ <small class='text-muted'>
+ <%= t(".hidden_comment_by_html",
+ :time_ago => tag.abbr(friendly_date_ago(comment.created_at),
+ :title => l(comment.created_at)),
+ :user => link_to(comment.author.display_name, user_path(comment.author))) %>
+ — <span class="action-button text-muted" data-comment-id="<%= comment.id %>" data-method="POST" data-url="<%= changeset_comment_unhide_url(comment.id) %>"><%= t("javascripts.changesets.show.unhide_comment") %></span>
+ </small>
+ <div class="mx-2">
+ <%= comment.body.to_html %>
+ </div>
+ </li>
+ <% end %>
+ <% end %>
+ </ul>
+ </form>
+ </div>
+ <% end %>
+
+ <% unless current_user %>
+ <p class="notice">
+ <%= link_to(t(".join_discussion"), login_path(:referer => request.fullpath)) %>