Following show my python return:
return render(request,'school\Views\Spredictions.html'{'len':length,'final':Ol_result,'data':marks_sheet})
Here, final : - ['pass','pass',''fail,'fail'] like this
following show the my html code
<tbody>
{%for m in data%}
<tr>
<td>{{m.student_name}}</td>
<td>{{final}}</td>
</tr>
{%endfor%}
</tbody>
I want to show one by one value in table interface, but show like that
How to solve this problem. Any one can help me Thank you