[%# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # # This Source Code Form is "Incompatible With Secondary Licenses", as # defined by the Mozilla Public License, v. 2.0. #%] [%# INTERFACE: # bug: Bugzilla::Bug that we are listing the votes for. # users: list of hashes. May be empty. Each hash has two members: # login_name: string. The login name of the user whose vote is attached # vote_count: integer. The number of times that user has votes for this bug. #%] [% subheader = BLOCK %] [% "$terms.Bug $bug.id" FILTER bug_link(bug) FILTER none %] - [% bug.short_desc FILTER html %] [% END %] [% PROCESS global/header.html.tmpl title = "Show Votes" subheader = subheader %] [% total = 0 %] [% FOREACH voter = users %] [% total = total + voter.vote_count %] [% END %]
Who Number of votes
[% voter.login_name FILTER email FILTER html %] [% voter.vote_count FILTER html %]

Total votes: [% total FILTER html %]

[% PROCESS global/footer.html.tmpl %]