1 <% set_title(t(".title", :id => @note.id)) %>
4 <a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
5 <%= t ".#{@note.status}_title", :note_name => @note.id %>
8 <div class="browse-section">
9 <h4><%= t(".description") %></h4>
10 <div class="note-description">
11 <%= h(@note_comments.first.body.to_html) %>
14 <div class="details" data-coordinates="<%= @note.lat %>,<%= @note.lon %>" data-status="<%= @note.status %>">
15 <ul class="list-unstyled">
16 <li><%= note_event("opened", @note.created_at, @note.author) %></li>
17 <% if @note.status == "closed" %>
18 <li><%= note_event(@note.status, @note.closed_at, @note.all_comments.last.author) %></li>
21 <%= t "browse.location" %>
22 <%= link_to(t(".coordinates_html",
23 :latitude => tag.span(number_with_delimiter(@note.lat), :class => "latitude"),
24 :longitude => tag.span(number_with_delimiter(@note.lon), :class => "longitude")),
25 root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}")) %>
30 <% if @note_comments.find { |comment| comment.author.nil? } -%>
31 <p class='alert alert-warning'><%= t "javascripts.notes.show.anonymous_warning" %></p>
34 <% if current_user && current_user != @note.author %>
35 <p class="text-muted"><%= report_link(t(".report"), @note) %></p>
38 <% if @note_comments.length > 1 %>
39 <div class='note-comments'>
40 <ul class="list-unstyled">
41 <% @note_comments[1..].each do |comment| %>
42 <li id="c<%= comment.id %>">
43 <small class='text-muted'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
44 <%= comment.body.to_html %>
51 <% if @note.status == "open" %>
52 <% if current_user -%>
53 <form action="#" class="standard-form">
54 <textarea class="comment" name="text" cols="40" rows="5" maxlength="2000"></textarea>
55 <div class="buttons clearfix">
56 <% if current_user.moderator? -%>
57 <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="deemphasize" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
59 <input type="submit" name="close" value="<%= t("javascripts.notes.show.resolve") %>" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= close_note_url(@note, "json") %>">
60 <input type="submit" name="comment" value="<%= t("javascripts.notes.show.comment") %>" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= comment_note_url(@note, "json") %>" disabled="1">
65 <form action="#" class="standard-form">
66 <input type="hidden" name="text" value="">
67 <div class="buttons clearfix">
68 <% if current_user and current_user.moderator? -%>
69 <input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="deemphasize" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
71 <% if current_user -%>
72 <input type="submit" name="reopen" value="<%= t("javascripts.notes.show.reactivate") %>" data-note-id="<%= @note.id %>" data-method="POST" data-url="<%= reopen_note_url(@note, "json") %>">