Can someone explain why the format of the XML looks great in the browser -
<job id="blah" name="string2" master="string3" dbversion="string4" xmlversion="string5">
<jobmst>
<jobmst_id>10081</jobmst_id>
<jobmst_type>2</jobmst_type>
<jobmst_prntid>blah blah</jobmst_prntid>
<jobmst_active>Y</jobmst_active>
.......
But when I save the output, or do a CURL of the page it comes out as unformatted?
<job id="blah" name="string2" master="string3" dbversion="string4" xmlversion="string5"><jobmst><jobmst_id>10081</jobmst_id><jobmst_type>2</jobmst_type><jobmst_prntid>blah blah</jobmst_prntid><jobmst_active>Y</jobmst_active>
edit - I'm learning something here. Django is formatting it to XML in the browser (good) but the source is unformatted so I need to have a separate download feature to actually format it for download?