I have a dictionary
data = {'sok': [ [1, 10] ], 'sao': [ [1, 10] ],'sok&sao':[ [2,20]] }
How Can I (Loop trough Dictionary ) present My data as (HTML) table to Django template.?? This format that as table
author qty Amount
sok 1 10
sao 1 10
sok&sao 2 20
total