{% extends 'base.html' %} {% load bootstrap %} {% block title %}Question Media{% endblock %} {% block css %} {% endblock %} {% block content %}

{% if question.user != the_user %}

Review Question Media

{% else %}

Edit Question Media

{% endif %} {% if documents %} {% else %}

No documents.

{% endif %} {% if question %} {% if question.user != the_user %}
{{ the_user }}, you can review the media for this question (this question was submitted by: {{ question.user }}).
{% else %}
{% csrf_token %} {% csrf_token %}

{{ form.non_field_errors }}

{{ form.docfile.label_tag }} {{ form.docfile.help_text }}

{{ form.docfile.errors }} {{ form.docfile }}

Done changes Back to edit question
{% endif %} {% endif %}
{% endblock %}