Fix up email formatting on talk acceptance

This commit is contained in:
Michael Hall 2018-05-17 21:32:32 -04:00
parent bebb84680a
commit 0690d85f92
2 changed files with 2 additions and 2 deletions

View file

@ -3,6 +3,7 @@
{% block content %}
<h3>You proposed a talk for {{event.name|striptags}}</h3>
<p>
{% if proposal.status == proposal.ACCEPTED %}
Congratulations! Your submitted talk, <b>{{proposal.talk.title}}</b>, has been accepted by the event hosts.
{% elif proposal.status == proposal.DECLINED %}
@ -10,7 +11,7 @@ Unfortunately your submitted talk, <b>{{proposal.talk.title}}</b>, was declined
{% else %}
Your submitted talk, <b>{{proposal.talk.title}}</b>, is currently being reviewed by the event hosts.
{% endif %}
</p>
<a href="{{event.get_full_url}}" title="Manage talks">View this event.</a>
</p>
{% endblock %}

View file

@ -12,5 +12,4 @@
<p>{{proposal.talk.speaker.bio}}</p>
<a href="https://{{site.domain}}{% url 'schedule-event-talks' event.id %}" title="Manage talks">Review this proposal.</a>
</p>
{% endblock %}