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

{{concretize(paper_version.time)}}

{% endfor %}
{% for review in concretize(reviews) %}

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

{% endfor %}
{% for comment in concretize(comments) %}

{{concretize(comment.user.name)}} at {{concretize(comment.time)}}
Comment:
{{concretize(comment.contents)}}

{% endfor %}
{% if concretize(profile.level) != 'normal' and concretize(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 %}