From 0690d85f92a3bcb42369ef9910e5d623a1a00a56 Mon Sep 17 00:00:00 2001
From: Michael Hall
Date: Thu, 17 May 2018 21:32:32 -0400
Subject: [PATCH] Fix up email formatting on talk acceptance
---
.../templates/get_together/emails/events/talk_acceptance.html | 3 ++-
.../templates/get_together/emails/events/talk_proposed.html | 1 -
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/get_together/templates/get_together/emails/events/talk_acceptance.html b/get_together/templates/get_together/emails/events/talk_acceptance.html
index 81d17f3..71c8690 100644
--- a/get_together/templates/get_together/emails/events/talk_acceptance.html
+++ b/get_together/templates/get_together/emails/events/talk_acceptance.html
@@ -3,6 +3,7 @@
{% block content %}
You proposed a talk for {{event.name|striptags}}
+
{% if proposal.status == proposal.ACCEPTED %}
Congratulations! Your submitted talk, {{proposal.talk.title}}, has been accepted by the event hosts.
{% elif proposal.status == proposal.DECLINED %}
@@ -10,7 +11,7 @@ Unfortunately your submitted talk, {{proposal.talk.title}}, was declined
{% else %}
Your submitted talk, {{proposal.talk.title}}, is currently being reviewed by the event hosts.
{% endif %}
+
View this event.
-
{% endblock %}
diff --git a/get_together/templates/get_together/emails/events/talk_proposed.html b/get_together/templates/get_together/emails/events/talk_proposed.html
index ea7a55b..0a78040 100644
--- a/get_together/templates/get_together/emails/events/talk_proposed.html
+++ b/get_together/templates/get_together/emails/events/talk_proposed.html
@@ -12,5 +12,4 @@
{{proposal.talk.speaker.bio}}
Review this proposal.
-
{% endblock %}