{% extends 'tutor/base_tutor.html' %} {% block content %}
{% include 'tutor/single_ad.inc.html' %} {% if feed.already_applied %}
Proposal

{{ feed.proposal }}

{% if feed.answers.count %}
Questions asked by the client:
    {% for val in feed.answers.all %}
  1. {{ val.question }}
    {{ val.answer }}
  2. {% endfor %}
{% endif %} {# end qa #} {% else %}
{% csrf_token %} {% if feed.questions.count %}

Questions asked by the client:

{% for val in feed.questions.all %} {% endfor %} {% endif %}
{% endif %} {# end is_applied #}
{% endblock content %}