aurweb/templates/partials/tu/proposal/voters.html
Kevin Morris 49cc12f99d
jinja2: rename filter 'urlencode' to 'quote_plus'
urlencode does more than just a quote_plus. Using urlencode
was not sensible, so this commit addresses that.

Signed-off-by: Kevin Morris <kevr@0cost.org>
2021-08-31 13:28:54 -07:00

10 lines
250 B
HTML

<h2>{{ "Voters" | tr }}</h2>
<ul id="voters">
{% for voter in voters %}
<li>
<a href="/account/{{ voter.Username | quote_plus }}">
{{ voter.Username | e }}
</a>
</li>
{% endfor %}
</ul>