diff --git a/pinaxcon/templates/symposion/reviews/result_notification.html b/pinaxcon/templates/symposion/reviews/result_notification.html deleted file mode 100644 index ed3fbd428ac8615fddceb7418841d74232094fba..0000000000000000000000000000000000000000 --- a/pinaxcon/templates/symposion/reviews/result_notification.html +++ /dev/null @@ -1,156 +0,0 @@ -{% extends "symposion/reviews/base.html" %} - -{% load i18n %} - - -{% block body_class %}{{ block.super }} review-results{% endblock %} - -{% block extra_style %} - -{% endblock %} - -{% block body %} - - - -

Result Notification

- -
- - {% csrf_token %} - -

- Select one or more proposals (0 currently selected) -
- then pick an email template - -
- -

- - - - - - - - - - - - - {% for proposal in proposals %} - - - - - - - - - {% endfor %} - -
#{% trans "Speaker / Title" %}{% trans "Category" %}{% trans "Status" %}{% trans "Notified?" %}
{{ proposal.number }} - - {{ proposal.speaker }} -
- {{ proposal.title }} -
-
{{ proposal.track }} - {% with proposal.result.status as status %} -
- {% if status != "undecided" %} - {{ status }} - {% endif %} -
- {% endwith %} -
- {% if proposal.notifications.exists %}yes{% endif %} -
-
-{% endblock %} - -{% block extra_script %} - -{% endblock %}