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

{{debate.title}}

{{ debate.description }}


{{ debate.author_profile.first_name }} {{ debate.author_profile.last_name }} vs. {{ debate.opponent.first_name }} {{ debate.opponent.last_name }}

{% for comment in debate.comments.all %}

{% cycle 'Agree' 'Disagree' %}


{{ comment.body|ljust:10|striptags|safe|linebreaksbr }}

{% endfor %}

{{ comment.body|ljust:10|striptags|safe|linebreaksbr }}

Reply

{% endblock %}