Fix up email formatting on talk acceptance
This commit is contained in:
parent
bebb84680a
commit
0690d85f92
2 changed files with 2 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>You proposed a talk for {{event.name|striptags}}</h3>
|
<h3>You proposed a talk for {{event.name|striptags}}</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
{% if proposal.status == proposal.ACCEPTED %}
|
{% if proposal.status == proposal.ACCEPTED %}
|
||||||
Congratulations! Your submitted talk, <b>{{proposal.talk.title}}</b>, has been accepted by the event hosts.
|
Congratulations! Your submitted talk, <b>{{proposal.talk.title}}</b>, has been accepted by the event hosts.
|
||||||
{% elif proposal.status == proposal.DECLINED %}
|
{% elif proposal.status == proposal.DECLINED %}
|
||||||
|
@ -10,7 +11,7 @@ Unfortunately your submitted talk, <b>{{proposal.talk.title}}</b>, was declined
|
||||||
{% else %}
|
{% else %}
|
||||||
Your submitted talk, <b>{{proposal.talk.title}}</b>, is currently being reviewed by the event hosts.
|
Your submitted talk, <b>{{proposal.talk.title}}</b>, is currently being reviewed by the event hosts.
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</p>
|
||||||
|
|
||||||
<a href="{{event.get_full_url}}" title="Manage talks">View this event.</a>
|
<a href="{{event.get_full_url}}" title="Manage talks">View this event.</a>
|
||||||
</p>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -12,5 +12,4 @@
|
||||||
<p>{{proposal.talk.speaker.bio}}</p>
|
<p>{{proposal.talk.speaker.bio}}</p>
|
||||||
|
|
||||||
<a href="https://{{site.domain}}{% url 'schedule-event-talks' event.id %}" title="Manage talks">Review this proposal.</a>
|
<a href="https://{{site.domain}}{% url 'schedule-event-talks' event.id %}" title="Manage talks">Review this proposal.</a>
|
||||||
</p>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue