{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% load humanize %} {% block head %} {% endblock head %} {% block main %}
{% csrf_token %}
{{ question.votes }} {% if user in question.get_favoriters %} {% else %} {{ question.favorites }}

{{ question.title }}

{{ question.user.profile.get_screen_name }} asked {{ question.update_date|naturaltime }}
{{ question.get_description_as_markdown|safe }}
{% if question.get_tag_list %}

{% for tag in question.get_tag_list %} {{ tag }} {% endfor %}

{% endif %}
{% for answer in question.get_answers %} {% include 'questions/partial_answer.html' with question=question answer=answer %} {% endfor %}

Your Answer

{% csrf_token %} {{ form.question }}
{% include 'markdown_editor.html' with textarea='id_description' %} {{ form.description }}
{% endblock main %}