talk details: speaker full name + link to track

This commit is contained in:
Élie Bouttier 2016-10-09 12:20:05 +02:00
parent d00a383d54
commit a0c1bc7714
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
{% for speaker in talk.speakers.all %}
{% if forloop.first %}<ul>{% endif %}
<li><a href="{% url 'show-speaker' speaker.username %}">{{ speaker }}</a></li>
<li><a href="{% url 'show-speaker' speaker.username %}">{{ speaker.profile }}</a></li>
{% if forloop.last %}</ul>{% endif %}
{% empty %}
<i>{% trans "No speakers." %}</i>
@ -49,7 +49,7 @@
<h3>{% trans "Track:" %}</h3>
{% if talk.track %}
<p>{{ talk.track }}</p>
<p><a href="{{ talk.track.get_absolute_url }}">{{ talk.track }}</a></p>
{% else %}
<p><em>{% trans "No assigned yet." %}</em></p>
{% for topic in talk.topics.distinct %}