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

{{ question.category }} {{ question.tutorial}} {{ question.minute_range }} min {{ question.second_range }} sec {% ifequal question.uid|stringformat:'s' user.id|stringformat:'s' %} Edit Save {% endifequal %} {{ question.date_created|date:"y-d-m" }}, {{ question.date_created|time }} {{ question.user }}

Answers:

{% for reply in replies %}
{{ reply.body|safe }}
{{ reply.user }} {% ifequal reply.uid|stringformat:'s' user.id|stringformat:'s' %} Edit Save {% endifequal %}
{% endfor %} {% if user.is_authenticated %}
{% csrf_token %} {% with WIDGET_ERROR_CLASS='field_error' %}
{% render_field form.question value=question.id %} {% render_field form.body class+='form-control' %}
{% endwith %}
{% else %}

Log-in to reply to this question.

{% endif %} {% endblock %} {% block javascript %} {% endblock %}