2cdb554623
* Fixes an incorrect link in dashboard * Disables the symposion sponsors app * Adds redirect links for login/logout; adds THEME_CONTACT_EMAIL value * Re-adds colophon/copyright message. * Adds AceMarkdownEditor widget * Tidies up the generated HTML * Tidies up form snippet behaviour * Proposals forms now use the markdown editor * Monkey patches the markdown editor into the speaker form. * Adds missing field to proposal details * Fixes #10 — adds a link to random unreviewed proposals * Minor tweaks
21 lines
509 B
HTML
21 lines
509 B
HTML
{% extends "symposion/reviews/base.html" %}
|
|
|
|
|
|
{% block body_class %}{{ block.super }}
|
|
{% if reviewed == "all_reviews" %}
|
|
review-list
|
|
{% endif %}
|
|
{% 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 %}
|