{% extends "public/content.html" %} {% load url from future %} {% block headtitle %}My Review Requests{% endblock %} {% block left_content %} {% include "members/partials/locker-tabs.html" with active_tab="abstract_reviews" %} {% endblock %} {% block title %}

Abstract Review Requests for {{ abstract_request }}

{% endblock %} {% block content %} {% if abstract_reviews %} {% for review in abstract_reviews %} {% endfor %}
Code Date Type Category Status
{% if not review.reviewed %} {{ review.content_submission.unique_code }} {% else %} {{ review.content_submission.unique_code }} {% endif %} {{ review.created|date:"d/m/Y H:i"}} {{ review.content_submission.content_type }} {{ review.content_submission.abstract_category }} {{ review.reviewed|yesno:"Reviewed,Pending" }} {% if not review.reviewed %} Review {% endif %}

Download Submissions as PDF

{% else %}

You have no reviews.

{% endif %}

< Go Back

{% endblock %}