[Fixed]-Django – display informations from different models into the same HTML template

1👍

You are missing commas:

context = {
    'namelist': namelist,
    'pdbcount': pdbcount,
    'structcount': structcount
} 

Leave a comment