removing log out link from user account menu (bug 662983)

This commit is contained in:
Matt Claypotch 2011-06-09 15:49:00 -07:00
Родитель 11dd8eeba9
Коммит 4505fe615c
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -6,7 +6,9 @@
{% if account_links %}
<ul>
{% for link in account_links %}
<li><a href="{{ link.href }}">{{ link.text }}</a></li>
{% if not loop.last %}
<li><a href="{{ link.href }}">{{ link.text }}</a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}