{% extends "public/content.html" %} {% load staticfiles %} {% load get_company_papers %} {% load safe_cycle %} {% block head_title %} {{ paper }} {% endblock %} {% block left_content %} {% include "members/partials/locker-tabs.html" with active_tab="papers" %} {% endblock %} {% block headstyle %} {% endblock %} {% block headscript %} {% endblock %} {% block title %}

{{ paper.name }}

{% if paper.subtitle %}

{{ paper.subtitle }}

{% endif %}
{% if paper.content_left %}
{{ paper.content_left|safe }}
{% endif %} {% if paper.content_right %}
{{ paper.content_right|safe }}
{% endif %}
{% if paper.pdf_file %}
{% endif %} {% if paper.external_url %}
{% endif %} {% if paper.embed_code %}
{{ paper.embed_code|safe }}
{% endif %} {% if not paper_submission.complete %}

Evaluation

{% endif %}
{% endblock %} {% block content %}
{% csrf_token %} {% if required_errors %}

Please ensure that you complete all required fields before submitting the form

{% endif %} {% if paper_submission.complete %}

You have already completed this evaluation.

{% else %} {% for section in paper_section %}

{{ forloop.counter }}. {{ section.name }}

{% for question in section.get_questions %}
{% safe_cycle 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l' 'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z' as letter %}
{% include "members/papers/partials/question.html" with question=question question_number=letter %}
{% endfor %}
{% endfor %} {% for question in paper_questions %}
{% include "members/papers/partials/question.html" with question=question question_number=forloop.counter %}
{% endfor %}
{% endif %}
{% endblock %}