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

{{ question.category }} {{ question.tutorial}} {{ question.minute_range }} min {{ question.second_range }} sec {% if user|can_edit:question %} Edit Save {% endif %} {{ question.date_created|date:"d-m-y" }}, {{ question.date_created|time }} {{ question.user }}

Answers:

{% for reply in replies %}
{{ reply.body|safe }}
{{ reply.date_created|date:"d-m-y" }}, {{ reply.date_created|time }} {{ reply.user }} {% if user|can_edit:reply %} Edit Save {% endif %}
{% 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 %}