{% 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 }}
{{ debug|pprint(True) }}
{% endblock %}