diff --git a/symposion/templates/emails/proposal_new_message/message.html b/symposion/templates/emails/proposal_new_message/message.html index 90bbd8c8..3a9addf5 100644 --- a/symposion/templates/emails/proposal_new_message/message.html +++ b/symposion/templates/emails/proposal_new_message/message.html @@ -1,3 +1,4 @@ +{% load url from future %} {% load account_tags %}
{% user_display message.user %} has added a message on {{ proposal.title }}. @@ -6,6 +7,6 @@ {{ message.message|safe }}
- {% if reviewer %}{% url review_detail proposal.pk as detail_url %}{% else %}{% url proposal_detail proposal.pk as detail_url %}{% endif %} + {% if reviewer %}{% url 'review_detail' proposal.pk as detail_url %}{% else %}{% url 'proposal_detail' proposal.pk as detail_url %}{% endif %} Respond online at http://{{ current_site }}{{ detail_url }}#proposal-feedback
\ No newline at end of file diff --git a/symposion/templates/emails/proposal_updated/message.html b/symposion/templates/emails/proposal_updated/message.html index d5ed74ec..eef8af8d 100644 --- a/symposion/templates/emails/proposal_updated/message.html +++ b/symposion/templates/emails/proposal_updated/message.html @@ -1,8 +1,9 @@ +{% load url from future %} {% load account_tags %}{% user_display user %} has made changes to {{ proposal.title }} which you have previously reviewed or commented on.
- {% url review_detail proposal.pk as detail_url %} + {% url 'review_detail' proposal.pk as detail_url %} View the latest version of the proposal online at http://{{ current_site }}{{ detail_url }}
diff --git a/symposion/templates/emails/speaker_addition/message.html b/symposion/templates/emails/speaker_addition/message.html index dff0c7ba..dec1ac76 100644 --- a/symposion/templates/emails/speaker_addition/message.html +++ b/symposion/templates/emails/speaker_addition/message.html @@ -1,6 +1,7 @@ +{% load url from future %}{{ proposal.speaker.name }} attached you as an additional speaker to a talk proposal for {{ current_site.name }} entitled "{{ proposal.title }}".
For more details, visit the {{ current_site.name }} speaker dashboard: - http://{{ current_site }}{% url dashboard %} + http://{{ current_site }}{% url 'dashboard' %}
diff --git a/symposion/templates/emails/speaker_invite/message.html b/symposion/templates/emails/speaker_invite/message.html index 5ab2c2e8..5e32bd4a 100644 --- a/symposion/templates/emails/speaker_invite/message.html +++ b/symposion/templates/emails/speaker_invite/message.html @@ -1,9 +1,10 @@ +{% load url from future %}{{ proposal.speaker.name }} attached you as an additional speaker to a talk proposal for {{ current_site.name }} entitled "{{ proposal.title }}".
Go to
-http://{{ current_site }}{% url speaker_create_token token %}
+http://{{ current_site }}{% url 'speaker_create_token' token %}
to confirm.
diff --git a/symposion/templates/emails/speaker_no_profile/message.html b/symposion/templates/emails/speaker_no_profile/message.html index 14007092..d77693c1 100644 --- a/symposion/templates/emails/speaker_no_profile/message.html +++ b/symposion/templates/emails/speaker_no_profile/message.html @@ -1,8 +1,9 @@ +{% load url from future %}{{ proposal.speaker.name }} attached you as an additional speaker to a talk proposal for {{ current_site.name }} entitled "{{ proposal.title }}".
Go to
-http://{{ current_site }}{% url speaker_create_token token %}
+http://{{ current_site }}{% url 'speaker_create_token' token %}
to confirm and fill out your speaker profile.