{% extends 'partials/base.html' %} {% load static %} {% block content %}
{% block title %} {% include 'partials/title.html' with title='Players' text='Dashboard' textone='Management' texttwo='Players' %} {% endblock %}

Players List

{% for record in players %} {% endfor %}
ID Player Name Sports Date of Join Action
{{ record.ID }} {{ record.Sports }} {{ record.DateofJoin }}
{% endblock %}