i could not display the html data sent from python in the html page.
when i open the html in view source mode, it thing data is rendered as messed
html code
<table border="1">
<tr>
<th>servername</th>
<th>cpu</th>
<th>memory</th>
<th>cdrivespace</th>
<th>ddrivespace</th>
<th>fdrivespace</th>
<th>gdrivespace</th>
<th>pdrivespace</th>
<th>kdrivespace</th>
{{ data }}
</table>
python view
data = callFileReaderMain( form.cleaned_data['session_key'] )
return render(request,'marketplace_output.html',{'data' : data })
view source code
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>marketplace output server details</title>
</head>
<body>
<table border="1">
<tr>
<th>servername</th>
<th>cpu</th>
<th>memory</th>
<th>cdrivespace</th>
<th>ddrivespace</th>
<th>fdrivespace</th>
<th>gdrivespace</th>
<th>pdrivespace</th>
<th>kdrivespace</th>
<tr><td>W01GCTIAPP01A</td><td>3.0</td><td>93.0</td><td>42.0</td><td>40.0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr>
</table>
</body>
</html>
