{% extends 'website/templates/base.html' %} {% load widget_tweaks %} {% block content %}
{{ question.title }}
{{ question.body }}

{{ question.category }} {{ question.tutorial}} {{ question.minute_range }} min {{ question.second_range }} sec
{% for reply in replies %}
{{ reply.body }} {{ reply.user }}
{% endfor %}
{% csrf_token %} {% with WIDGET_ERROR_CLASS='field_error' %}
{% render_field form.question value=question.id %} {% render_field form.body class+='form-control' %}
{% endwith %}
{% endblock %}