diff --git a/symposion/templates/reviews/result_notification.html b/symposion/templates/reviews/result_notification.html index 89be268a8a98de342951e5bcd32999e3b79b5975..37e2946215f0a3df8d6ab8aae9eee3e6bfc802c6 100644 --- a/symposion/templates/reviews/result_notification.html +++ b/symposion/templates/reviews/result_notification.html @@ -13,7 +13,6 @@ {% block body %}

Result Notification

-
{% csrf_token %} diff --git a/symposion/templates/reviews/result_notification_prepare.html b/symposion/templates/reviews/result_notification_prepare.html new file mode 100644 index 0000000000000000000000000000000000000000..f87cc5bca803a5c569a2d2e1caa11d9868bc0729 --- /dev/null +++ b/symposion/templates/reviews/result_notification_prepare.html @@ -0,0 +1,42 @@ +{% extends "reviews/base.html" %} + +{% load i18n %} + +{% block body %} +

Result Notification Prepare

+ +
+
+

Proposals

+ + {% for proposal in proposals %} + + + + {% endfor %} +
+ {{ proposal.speaker }} ({{ proposal.speaker.email }}) +
+ {{ proposal.title }} +
+
+
+

Email

+ + + + Subject: + +
+ Body: + +
+ + + + +
+ +{% endblock %}