{% for tournament in stats.tournament_history[:10] %}
{{ tournament.date[:10] if tournament.date != 'Unknown' else 'Unknown Date' }}
{{ tournament.tournament_type.replace('_', ' ')|title }} • {{ tournament.shots_fired }} shots
{{ tournament.score }}
{% endfor %}
{% if stats.tournament_history|length > 10 %}
... and {{ stats.tournament_history|length - 10 }} more
{% endif %}