]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/_note.xml.builder
Fine tune button styling for note popups
[rails.git] / app / views / notes / _note.xml.builder
index 1128f35ebf4477c4ce640da2804ae56e623c1aa6..2b978e325f116b4d8effbccaf772fa689f268ed7 100644 (file)
@@ -1,12 +1,18 @@
 xml.note("lon" => note.lon, "lat" => note.lat) do
   xml.id note.id
   xml.url note_url(note, :format => params[:format])
-  xml.comment_url comment_note_url(note, :format => params[:format])
-  xml.close_url close_note_url(note, :format => params[:format])
+
+  if note.closed?
+    xml.reopen_url reopen_note_url(note, :format => params[:format])
+  else
+    xml.comment_url comment_note_url(note, :format => params[:format])
+    xml.close_url close_note_url(note, :format => params[:format])
+  end
+
   xml.date_created note.created_at
   xml.status note.status
 
-  if note.status == "closed"
+  if note.closed?
     xml.date_closed note.closed_at
   end