{% extends "base.html" %} {% load static %} {% block title %} Events {% endblock %} {% block content %}

Events

Every event that has taken place on RAW, Smackdown, and on PPVs, since the creation of this league.

Events List:

Yup, here are those events, collapsed in a nice way, click for match details:

{% regroup points by match.event as event_list %} {% for event in event_list %}
{% regroup event.list by match as match_list %} {% for match in match_list %} {% endfor %}
Event Scoring
{{match.grouper}}
    {% for tp in match.list %} {% if tp.points %}
  • {{tp.team}} received {{tp.points}} point{{tp.points|pluralize}} for {{tp.star}}
  • {% endif %} {% endfor %}
{% endfor %}
{% endblock %}