diff options
Diffstat (limited to 'templates/conference/talks.html')
-rw-r--r-- | templates/conference/talks.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/conference/talks.html b/templates/conference/talks.html index aa255d9..0a05576 100644 --- a/templates/conference/talks.html +++ b/templates/conference/talks.html @@ -8,7 +8,7 @@ <th>Title <th>Speaker {% for talk in talks %} -<tr><td><a href="{{ URL_ROOT }}/details/{{ talk.id }}">{{ talk.title }}<td>{{ talk.speaker }} +<tr><td><a href="{% url 'conference:details' talk.id %}">{{ talk.title }}<td>{{ talk.speaker }} {% endfor %} </table> {% endblock %} |