Bug 152283: Show votes by bug -list has a logged out footer.

2xr=bbaetz
This commit is contained in:
jouni%heikniemi.net 2002-06-22 10:32:38 +00:00
Родитель 535f7dee25
Коммит 42d477a517
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -38,15 +38,15 @@
<th>Number of votes</th>
</tr>
[% FOREACH user = users %]
[% FOREACH voter = users %]
<tr>
<td>
<a href="votes.cgi?action=show_user&amp;user=[% user.name FILTER url_quote %]">
[% user.name FILTER html %]
<a href="votes.cgi?action=show_user&amp;user=[% voter.name FILTER url_quote %]">
[% voter.name FILTER html %]
</a>
</td>
<td align="right">
[% user.count %]
[% voter.count %]
</td>
</tr>
[% END %]