- <tr>
- <th><%= t "browse.note.description" %></th>
- <td><%= h(@note.comments.first.body) %></td>
- </tr>
-
- <tr>
- <th><%= t "browse.node_details.coordinates" %></th>
- <td><div class="geo"><%= link_to ("<span class='latitude'>#{number_with_delimiter(@note.lat)}</span>, <span class='longitude'>#{number_with_delimiter(@note.lon)}</span>"), {:controller => 'site', :action => 'index', :lat => h(@note.lat), :lon => h(@note.lon), :zoom => "18"} %></div></td>
- </tr>
-
- <% if @note.comments.length > 1 %>
- <tr valign="top">
- <th><%= t "browse.note.comments" %></th>
- <td class="browse_comments">
- <table>
- <% @note.comments[1..-1].each do |comment| %>
- <tr>
- <td>
- <%= h(comment.body) %>
- <br />
- <span class="by"><%= t "browse.note.at_by", :when => friendly_date(comment.created_at), :user => note_author(comment) %></span>
- </td>
- </tr>
- <% end %>
- </table>
- </td>
- </tr>
+ <% if @note.status == "open" %>
+ <% if current_user -%>
+ <form class="mb-3" action="#">
+ <div class="mb-3">
+ <textarea class="form-control" name="text" cols="40" rows="5" maxlength="2000"></textarea>
+ </div>
+ <div class="btn-wrapper">
+ <% if current_user.moderator? -%>
+ <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
+ <% end -%>
+ <input type="submit" name="close" value="<%= t("javascripts.notes.show.resolve") %>" class="btn btn-primary" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= close_note_url(@note, "json") %>">
+ <input type="submit" name="comment" value="<%= t("javascripts.notes.show.comment") %>" class="btn btn-primary" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= comment_note_url(@note, "json") %>" disabled="1">
+ </div>
+ </form>
+ <% end -%>
+ <% else %>
+ <form class="mb-3" action="#">
+ <input type="hidden" name="text" value="" autocomplete="off">
+ <div class="btn-wrapper">
+ <% if current_user and current_user.moderator? -%>
+ <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
+ <% end -%>
+ <% if current_user -%>
+ <input type="submit" name="reopen" value="<%= t("javascripts.notes.show.reactivate") %>" class="btn btn-primary" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= reopen_note_url(@note, "json") %>">
+ <% end -%>
+ </div>
+ </form>