diff --git a/symposion/templates/reviews/review_list.html b/symposion/templates/reviews/review_list.html index 8da4cb68..36504604 100644 --- a/symposion/templates/reviews/review_list.html +++ b/symposion/templates/reviews/review_list.html @@ -1,6 +1,14 @@ {% extends "reviews/base.html" %} {% block body %} -

{{ section }}

+

{{ section }}

+ {% if reviewed == 'all_reviews' %} +

All proposals

+ {% elif reviewed == 'user_reviewed' %} +

Proposals you have reviewed

+ {% else %} +

Proposals you have not yet reviewed

+ {% endif %} + {% include "reviews/_review_table.html" %} {% endblock %}