]> git.openstreetmap.org Git - rails.git/blob - app/views/notes/_note.xml.builder
Move caching of reverse geocodes to describe_location
[rails.git] / app / views / notes / _note.xml.builder
1 xml.note("lon" => note.lon, "lat" => note.lat) do
2   xml.id note.id
3   xml.url note_url(note, :format => params[:format])
4   xml.comment_url comment_note_url(note, :format => params[:format])
5   xml.close_url close_note_url(note, :format => params[:format])  
6   xml.date_created note.created_at
7   xml.status note.status
8
9   if note.status == "closed"
10     xml.date_closed note.closed_at
11   end
12
13   xml.comments do
14     note.comments.each do |comment|
15       xml.comment do
16         xml.date comment.created_at
17         xml.uid comment.author_id unless comment.author_id.nil?
18         xml.user comment.author_name
19         xml.text comment.body
20       end       
21     end
22   end
23 end