fix traceback on /credits (bug 853695)

This commit is contained in:
Chris Van 2013-03-26 00:51:59 -07:00
Родитель db83b6e7cd
Коммит 2691ff0a94
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -41,7 +41,7 @@
</h3>
<p>
{% for user in users %}
<a href="{{ user.get_url_path() }}">{{ user.user__display_name }}</a>{% if not loop.last %}, {% endif %}
<a href="{{ url('users.profile', user.user__username) }}">{{ user.user__display_name }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</p>
{% endif %}