]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/map_bugs/read.xml.builder
Factor out common code into partials
[rails.git] / app / views / map_bugs / read.xml.builder
index f9d7ddaa1c7847f6ad8e39977d62fa605c4716c9..82fe04c4bdf11f76676307df2cd42ec25ee4097b 100644 (file)
@@ -1,25 +1,3 @@
 xml.instruct!
 
-xml.bug("lon" => @bug.lon, "lat" => @bug.lat) do
-       xml.id @bug.id
-       xml.date_created @bug.date_created
-       xml.nearby @bug.nearby_place
-       xml.status @bug.status
-       if @bug.status == "closed"
-               xml.date_closed @bug.date_closed
-       end
-       xml.comments do
-               for comment in @bug.map_bug_comment
-                       xml.comment do
-                               xml.date comment.date_created
-                               if !comment.commenter_id.nil?
-                                       xml.uid comment.commenter_id
-                                       xml.user comment.user.display_name      
-                               else
-                                       xml.user comment.commenter_name
-                               end
-                               xml.text comment.comment
-                       end     
-               end
-       end
-end
+xml << render(:partial => "bug", :object => @bug)