diff --git a/pinaxcon/templates/symposion/reviews/result_notification.html b/pinaxcon/templates/symposion/reviews/result_notification.html new file mode 100644 index 0000000000000000000000000000000000000000..4a2013ffd57d687e9e135dec79a5a584e4d8f8fc --- /dev/null +++ b/pinaxcon/templates/symposion/reviews/result_notification.html @@ -0,0 +1,153 @@ +{% extends "symposion/reviews/base.html" %} + +{% load i18n %} + +{% 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 %}