${opts.map((o,i) => {
const v = showResult ? (p.votes?.[i] || 0) : 0;
const pct = showResult && p.total ? Math.round(v/p.total*100) : 0;
const my = p.my_vote === i;
return `
${showResult ? `
` : ''}
${my?' ':''}${U.esc(o)}
${showResult ? `${v}票 ${pct}%` : ''}
`;
}).join('')}