From c3404459e17b37eac6794897a6316116a59ee053 Mon Sep 17 00:00:00 2001 From: florapdx Date: Mon, 29 Apr 2013 14:06:25 -0700 Subject: [PATCH] added markup to render new all, user reviewed, and user not-reviewed pages --- symposion/templates/reviews/review_list.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 %}