{% extends 'base.html' %} {% block content %} {% if paper != None %}
{% csrf_token %}
{% for coauthor in coauthors %}
{% endfor %}
{% for paper_version in paper_versions %}

{{ paper_version.time }}

{% endfor %}
{% for review in reviews %}

{{ review.reviewer.name }} at {{ review.time }}
Comment:
{{ review.contents }}
Novelty: {{ review.score_novelty }}
Presentation: {{ review.score_presentation }}
Technical: {{ review.score_technical }}
Confidence: {{ review.score_confidence }}

{% endfor %}
{% for comment in comments %}

{{ comment.user.name }} at {{ comment.time }}
Comment:
{{ comment.contents }}

{% endfor %}
{% if profile.level != 'normal' and profile != author %}
{% csrf_token %}

Leave a comment

{% csrf_token %}

Leave a review

{% for label, name, maxscore in review_score_fields %}
{% endfor %}
{% endif %} {% else %} Not found. The planets must not be aligned correctly, or perhaps no paper with the given 'id' exists. {% endif %} {% endblock %}