{% extends 'base.html' %} {% block body_content %}

{{ title }}

{% for application in applications %}

{{ application.job }}

Submitted: {{ application.created }}

{{ application.cover_text }}

    {% for answer in application.answers.all %}
  1. {{answer.question}}

    {{answer.text}}

  2. {% endfor %}
{% endfor %}
{% endblock %}