Files @ 4ecd4d0aa4c7
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/symposion/reviews/review_list.html

Christopher Neugebauer
Adds a clearer “check out and pay” wording to buttons on the dashboard.

Fixes #8.
{% extends "symposion/reviews/base.html" %}


{% block body_class %}{{ block.super }} review-list{% endblock %}

{% 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 "symposion/reviews/_review_table.html" %}
{% endblock %}