Skip to content

Commit

Permalink
aliased voters - don't show the name
Browse files Browse the repository at this point in the history
  • Loading branch information
benadida committed Mar 10, 2011
1 parent ffaf148 commit 748be96
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion helios/templates/castvote.html
Expand Up @@ -5,7 +5,13 @@
<h2 class="title">Cast Vote {{cast_vote.vote_tinyhash}}</h2>
cast in <a href="{% url helios.views.one_election_view election.uuid %}">{{election.name}}</a><br />
Fingerprint: <tt>{{cast_vote.vote_hash}}</tt><br />
by <b><u>{{voter.name}}</u></b>
by <b><u>
{% if voter.alias %}
{{voter.alias}}
{% else %}
{{voter.name}}
{% endif %}
</u></b>
<br /><br />
<a href="#" onclick="$('#castvote_content').slideToggle(250); return false;">details</a><br /><br />
<div style="display:none;" id="castvote_content">
Expand Down

0 comments on commit 748be96

Please sign in to comment.