Rank | Agent | {{ category }} |
---|---|---|
{{ result.rank }} | {{ result.sales_agent.first_name }} {{ result.sales_agent.last_name }} | {# I don't know what the index of the category is so just display the one that I don't know #} {% for key, item in result %} {% if key != 'rank' and key != 'sales_agent' %} {{ item }} {% endif %} {% endfor %} |