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

{{ question.title.text }}

{{ question.upvotes - question.downvotes }}
{% for paragraph in question.text.split("\n") %}

{{ paragraph }}

{% endfor %}
asked {{ prettydate(question.datetime) }}
{{ question.user.username }}
{% for answer in answers %}
{{ answer.upvotes - answer.downvotes }}
{% for paragraph in answer.text.split("\n") %}

{{ paragraph }}

{% endfor %}
{% endfor %}
{{ debug|pprint(True) }}
{% endblock %}