{% extends "base.html" %} {% load static %} {% block content %} <br><br><br> <section> <div class="container"> <table border="1" width="90%"> <thead> <tr> <th>Participant Name</th>   <th>Score</th> </tr> </thead> {% for participant in leaderboard %} <tbody> <tr> <td>   {{ participant.0.user.get_full_name }} </td> <td>   {{ participant.1 }} </td> </tr> </tbody> {% endfor %} </table> </div> </section> <br><br> {% endblock %}