Mercurial > hg > soundsoftware-site
view app/views/projects/.svn/text-base/show.xml.builder.svn-base @ 279:782d4fc319bb bug_95
added the description; changed the roles labels. minor fixes to layout.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 21 Mar 2011 18:02:56 +0000 |
parents | 94944d00e43c |
children |
line wrap: on
line source
xml.instruct! xml.project do xml.id @project.id xml.name @project.name xml.identifier @project.identifier xml.description @project.description xml.homepage @project.homepage xml.custom_fields do @project.visible_custom_field_values.each do |custom_value| xml.custom_field custom_value.value, :id => custom_value.custom_field_id, :name => custom_value.custom_field.name end end unless @project.custom_field_values.empty? xml.created_on @project.created_on xml.updated_on @project.updated_on xml.trackers do @project.trackers.each do |tracker| xml.tracker(:id => tracker.id, :name => tracker.name) end end end