{% extends "propmgr/base.html" %}{% load propmgr %}{% load appmedia %} {% block MAINTITLE %}{{ proposal.id }}. {{ proposal.title|escape }}{% endblock %} {% block feeds %} {% if user|can_view_proposal_history:proposal %}{% include "propmgr/feeds.html" %}{% endif %} {% endblock %}{% load adminmedia %} {% block content %} {% load restructuredtext %}

{{ proposal.id }}.{{ proposal.title|escape }} {% if user|can_edit_proposal:proposal %} Edit{% endif %} {% if user|can_view_proposal_status:proposal %}({{ proposal.get_status_display }}){% endif %} {% if user.can_edit_proposal_in_admin %}admin{% endif %}

The information in this section, and only this section, will be made public if the proposal is accepted.

{% if user|can_view_authors:proposal %}
{% endif %}


{{ proposal.summary|escape|urlize|preserveindentbr }}


The information below is only for the review process.



{{ proposal.description|restructuredtext }}


{% if proposal.attachedfile_set.count or user|can_edit_proposal:proposal %}

Attached Files{% if user|can_edit_proposal:proposal %} Add File{% endif %}

Attached files will not be made public even if the proposal is accepted. Authors may attach materials to the published talk after it is accepted. Any files attached here are for the review process only.

{% for attfile in proposal.attachedfile_set.all %} {% if forloop.first %} {% endif %} {% if forloop.last %}
UploadedBy SizeFileComment
{{ attfile.submitted|date }}{{ attfile.submitter|protected_proposal_user_name:prop_and_user|escape }} {{ attfile.get_file_size|filesizeformat }} {{ attfile.get_file_short_name|escape }} {{ attfile.comment }}
{% endif %} {% endfor %}
{% endif %} {% if user|can_view_reviews:proposal %}

Reviews{% if user|can_add_review:proposal %} Add Review{% if user|can_opt_out_review:proposal %} Opt-Out{% endif %}{% endif %}

{% if proposal.public %}Reviews are now PUBLIC and can be viewed by the author{% if proposal.coauthors.count %}s{% endif %} of this proposal. {% else %} Reviews are currently private (not seen by the author{% if proposal.coauthors.count %}s{% endif %}) but will be made visible and sent to the author{% if proposal.coauthors.count %}s{% endif %} after the selection process is over.{% endif %}
{% if user|can_view_reviewers:proposal %}The assigned reviewers are: {% for reviewer in proposal.reviewers.all %}{{ reviewer|escape }}{% if not forloop.last %}; {% endif %}{% endfor %}{% endif %}

{% for review in proposal.review_set.all %}


{{ review.comment|restructuredtext }}
{{ review.get_score_display }} {{ review.updated|date }}

{% endfor %}
{% endif %} {% if user|can_view_comments:proposal %}

Comments to Authors{% if user|can_add_comment:proposal %} Add Comment{% endif %}

Comments are a means of communication between Authors and Program Committee members. Comments will be immediately be sent to those associated with this proposal (authors, reviewers, commenters). No e-mail addresses are given out at any time.

{% for comment in proposal.comment_set.all %}


{{ comment.comment|restructuredtext }}
{{ comment.submitted|date }}

{% endfor %}
{% endif %} {% if user|can_view_proposal_history:proposal %}

Change History RSS 2.0 Change History Feed

History of changes to the proposal. Click sections to expand or contract. Some sections may be privileged and not expandable by all users.

{% for change in proposal.full_change_history %}
{{ change.action_time|date }} {{ change.user|protected_proposal_user_name:prop_and_user|escape }}
{{ change.action }} {{ change.model }}
{% else %}>{{ change.action }} {{ change.model }}
{% endif %} {% endfor %}
{% endif %} {{ proposal|mark_proposal_as_seen_by:user }} {% endblock %}