{% extends "layout.html" %} {% block title %}Goals{% endblock %} {% block header %} {% endblock %} {% block content %} Players

{% for entry in entries %} {{ entry.name }} plays position {{ entry.position |safe }}
His total points for the season are {{ entry.total_points }}
minutes played: {{ entry.mins_played }}
goals scored: {{ entry.goals_scored }}
assists: {{ entry.assists }}
clean sheets: {{ entry.clean_sheets }}
penalties saved: {{ entry.penalties_saved }}
penalties missed: {{ entry.penalties_missed}}
yellow cards: {{ entry.yellow_cards }}
red cards: {{ entry.red_cards }}
{% else %} Sorry, no players in our database have the name you entered. Please check your spelling and make sure the player is a member of the English Premier League {% endfor %}

{% endblock %}