[%# 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: # voting_user: hash containing a 'login' field # # products: list of hashes containing details of products relating to # voting: # name: name of product # bugs: list of bugs the user has voted for # bug_ids: list of bug ids the user has voted for # onevoteonly: one or more votes allowed per bug? # total: users current vote count for the product # maxvotes: max votes allowed for a user in this product # maxperbug: max votes per bug allowed for a user in this product # # this_bug: Bugzilla::Bug; if the user is voting for a bug, this is the bug # # canedit: boolean; Should the votes be presented in a form, or readonly? # # all_bug_ids: List of all bug ids the user has voted for, across all products #%] [% IF !header_done %] [% subheader = voting_user.login FILTER html %] [% IF canedit %] [% title = "Change Votes" %] [% IF this_bug %] [%# We .select and .focus the input so it works for textbox and checkbox %] [% onload = "document.forms['voting_form'].bug_" _ this_bug.id _ ".select();document.forms['voting_form'].bug_" _ this_bug.id _ ".focus()" %] [% END %] [% ELSE %] [% title = "Show Votes" %] [% END %] [% PROCESS global/header.html.tmpl style_urls = [ "extensions/Voting/web/style.css" ] %] [% ELSE %]
[% IF canedit %] You are [% ELSE %] This user is [% END %] currently not voting on any [% terms.bugs %].
[% END %] [% PROCESS global/footer.html.tmpl %]