{% extends "battles/base.html" %} {% block content %}

Battles

{% for object in object_list %}
{{object.user.first_name}} {{object.user.last_name}} | {{object.experience}} |
{% csrf_token %}
{% empty %} There are no opponents to battle with. {% endfor %}
{% for battlerecord in battlerecords %}
{{battlerecord}}
{% empty %} You have no recent battle records. {% endfor %}
{% endblock content %}