##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13009:63cb3680c14b
r14954:42b5c332b2c2
Show More
show.api.rsb
16 lines | 566 B | text/plain | TextLexer
api.project do
api.id @project.id
api.name @project.name
api.identifier @project.identifier
api.description @project.description
api.homepage @project.homepage
api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible?
api.status @project.status
api.is_public @project.is_public?
render_api_custom_values @project.visible_custom_field_values, api
render_api_includes(@project, api)
api.created_on @project.created_on
api.updated_on @project.updated_on
end