Files @ 5d8b09231970
Branch filter:

Location: symposion_app/symposion/templates/reviews/review_list.html

Patrick Altman
Just focus on Django 1.7+
{% extends "reviews/base.html" %}

{% block body %}
	<h3>{{ section }}</h3>
	{% if reviewed == 'all_reviews' %}
    	<h4>All proposals</h4>
    {% elif reviewed == 'user_reviewed' %}
    	<h4>Proposals you have reviewed</h4>
    {% else %}
    	<h4>Proposals you have not yet reviewed</h4>
    {% endif %}

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