1 <% set_title(t(".title", :id => @note.id)) %>
3 <%= render "sidebar_header", :title => t(".#{@note.status}_title", :note_name => @note.id) %>
6 <h4><%= t(".description") %></h4>
7 <div class="note-description">
8 <%= h(@note_comments.first.body.to_html) %>
11 <div class="details" data-coordinates="<%= @note.lat %>,<%= @note.lon %>" data-status="<%= @note.status %>">
12 <ul class="list-unstyled">
13 <li><%= note_event("opened", @note.created_at, @note.author) %></li>
14 <% if @note.status == "closed" %>
15 <li><%= note_event(@note.status, @note.closed_at, @note.all_comments.last.author) %></li>
18 <%= t "browse.location" %>
19 <%= link_to(t(".coordinates_html",
20 :latitude => tag.span(number_with_delimiter(@note.lat), :class => "latitude"),
21 :longitude => tag.span(number_with_delimiter(@note.lon), :class => "longitude")),
22 root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}")) %>
27 <% if @note_comments.find { |comment| comment.author.nil? } -%>
28 <p class='alert alert-warning'><%= t "javascripts.notes.show.anonymous_warning" %></p>
31 <% if @note_comments.length > 1 %>
32 <div class='note-comments'>
33 <ul class="list-unstyled">
34 <% @note_comments.drop(1).each do |comment| %>
35 <li id="c<%= comment.id %>">
36 <small class='text-muted'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
37 <%= comment.body.to_html %>
44 <% if @note.status == "open" %>
45 <% if current_user -%>
46 <form class="mb-3" action="#">
48 <textarea class="form-control" name="text" cols="40" rows="5" maxlength="2000"></textarea>
50 <div class="btn-wrapper">
51 <% if current_user.moderator? -%>
52 <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-method="DELETE" data-url="<%= api_note_url(@note, "json") %>">
54 <input type="submit" name="close" value="<%= t("javascripts.notes.show.resolve") %>" class="btn btn-primary" data-method="POST" data-url="<%= close_api_note_url(@note, "json") %>">
55 <input type="submit" name="comment" value="<%= t("javascripts.notes.show.comment") %>" class="btn btn-primary" data-method="POST" data-url="<%= comment_api_note_url(@note, "json") %>" disabled="1">
60 <form class="mb-3" action="#">
61 <input type="hidden" name="text" value="" autocomplete="off">
62 <div class="btn-wrapper">
63 <% if @note.status != "hidden" and current_user and current_user.moderator? -%>
64 <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-method="DELETE" data-url="<%= api_note_url(@note, "json") %>">
66 <% if current_user -%>
67 <input type="submit" name="reopen" value="<%= t("javascripts.notes.show.reactivate") %>" class="btn btn-primary" data-method="POST" data-url="<%= reopen_api_note_url(@note, "json") %>">
73 <% if current_user && current_user != @note.author %>
75 <small class="text-muted">
76 <%= t "javascripts.notes.show.report_link_html", :link => report_link(t(".report"), @note) %>
77 <% if @note.status == "open" %>
78 <%= t "javascripts.notes.show.other_problems_resolve", :link => report_link(t(".report"), @note) %>
79 <% elsif @note.status == "closed" %>
80 <%= t "javascripts.notes.show.other_problems_resolved" %>
86 <% if @note.freshly_closed? %>
87 <small class="text-muted">
88 <%= t "javascripts.notes.show.disappear_date_html", :disappear_in => disappear_in(@note) %>