Fix issue in proposals display code (#49)

* Fixes a biography display-related oops

* Fixes translation issue on cancelled proposals
This commit is contained in:
Christopher Neugebauer 2016-07-17 01:51:50 -06:00 committed by Scott Bragg
parent 6598d9f737
commit 51640e9893
2 changed files with 3 additions and 3 deletions

View file

@ -48,10 +48,10 @@
<h4>{% trans "Speaker:" %} {{ speaker.name }}</h4>
<h5>{% trans "Biography" %}</h5>
<div class="biography">{{ proposal.speaker.biography_html|safe }}&nbsp;</div>
<div class="biography">{{ speaker.biography_html|safe }}&nbsp;</div>
<h5>{% trans "Experience" %}</h5>
<div class="biography">{{ proposal.speaker.experience_html|safe }}&nbsp;</div>
<div class="biography">{{ speaker.experience_html|safe }}&nbsp;</div>
{% endfor %}
{% can_manage proposal as can_manage_proposal %}

View file

@ -34,7 +34,7 @@
</a>
{% endif %}
{% else %}
{% trans 'Cancelled' }
{% trans 'Cancelled' %}
{% endif %}
</div>
</div>